码迷,mamicode.com
首页 > 其他好文 > 详细

第二次作业

时间:2018-04-25 22:03:38      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:highlight   ima   pytho   input   sum   int   9.png   pre   png   

a = input(‘输入一个数字:‘)
b = input(‘再输入一个数字:‘)
sum2=int(a)+int(b)

print(‘两个数之和是{}‘.format(sum2))

  技术分享图片

c = input(‘输入摄氏温度:‘)
f = float(c)*9/5+32
print(‘{}摄氏温度转化为华氏温度是{}‘.format(c,f))

  技术分享图片

f = input(‘输入华氏温度:‘)
c = 5/9*(float(f)-32)
print(‘{}摄氏温度转化为华氏温度是{}‘.format(f,c))

  技术分享图片

第二次作业

标签:highlight   ima   pytho   input   sum   int   9.png   pre   png   

原文地址:https://www.cnblogs.com/hhhhuang/p/8947117.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!