n1=input(‘请输入一个数字:‘) n2=input(‘请输入一个数字:‘) sum2=int(n1)+int(n2) print(‘两数之和是:{}‘.format(sum2))
#摄氏℃=5/9(°F-32) #输入 f=float(input(‘输入摄氏温度:‘)) #计算 c=5/9*(f-32) #输出 print(‘{:.2f}华氏温度转换为摄氏温度为:{:.2f}‘.format(f,c))
原文地址:https://www.cnblogs.com/CandiceZheng/p/8919739.html
时间: 2024-11-24 16:31:25