鱼C论坛's Archiver
论坛
›
Python交流
› 摄氏度转华氏度
METALARISING
发表于 2023-9-1 16:23:28
摄氏度转华氏度
temp = int(input('write a number(celsius): '))
celsius = temp
print('the fahrenheit is%d' % (celsius*1.8+32))
页:
[1]
查看完整版本:
摄氏度转华氏度