l = __1__ ( input( "请输入下限:")) h = __2__ ( input( "请输入上限:")) if l __3__ 90 : print("人体温度不能__4__华氏90") elif h __5__110 : print("人体温度不能__6__华氏110") elif l __7__ h: print("下限应该__8__上限") else: print("华氏温度 摄氏温度") for f in range(__9__,__10__): c = 5 * (f - 32 ) / 9 print ("%8.0f %8.2f" % (f , c))
时间: 2023-08-20 10:10:44 浏览: 136
l = float( input( "请输入下限:")) h = float( input( "请输入上限:")) if l < 90 : print("人体温度不能低于华氏90") elif h > 110 : print("人体温度不能高于华氏110") elif l > h: print("下限应该小于等于上限") else: print("华氏温度 摄氏温度") for f in range(32, 213): c = 5 * (f - 32 ) / 9 print ("%8.0f %8.2f" % (f , c))
注:这是一段Python代码,根据输入的上限和下限,判断人体温度是否正常,并且输出华氏温度与摄氏温度的对应表。
相关问题
l = __1__ ( input( "请输入下限:")) h = __2__( input( "请输入上限:")) if l __3__ h: print("下限应该__4__上限") else: print("华氏温度 摄氏温度") for f in range(__5__,__6__): c = 5 * (f - 32 ) / 9 print ("%8.0f %8.2f" % (f , c))
l = float( input( "请输入下限:")) h = float( input( "请输入上限:")) if l > h: print("下限应该小于上限") else: print("华氏温度 摄氏温度") for f in range(int(l), int(h)+1): c = 5 * (f - 32 ) / 9 print ("%8.0f %8.2f" % (f , c))
l = __1__ ( input( "请输入下限:")) h = __2__ ( input( "请输入上限:")) print("华氏温度 摄氏温度") for f in range(__3__,__4__,__5__): c = 5 * (f - 32 ) / 9 print ("%8.0f %8.2f" % (f , c))
l = float(input("请输入下限:")) # __1__:float
h = float(input("请输入上限:")) # __2__:float
print("华氏温度 摄氏温度")
for f in range(int(l), int(h)+1, 10): # __3__:int(l) __4__:int(h)+1 __5__:10
c = 5 * (f - 32) / 9
print("%8.0f %8.2f" % (f, c))
阅读全文