l = __1__ ( input( "请输入下限:")) h = __2__ ( input( "请输入上限:")) if l __3__90 : print("人体温度不能__4__华氏90") elif h __5__110 : print("人体温度不能__6__华氏110") else: print("华氏温度 摄氏温度") for f in range(__7__,__8__): c = 5 * (f - 32 ) / 9 print ("%8.0f %8.2f" % (f , c))
时间: 2024-01-07 10:02:32 浏览: 136
l = float(input("请输入下限:"))
h = float(input("请输入上限:"))
if l < 90:
print("人体温度不能低于华氏90")
elif h > 110:
print("人体温度不能高于华氏110")
else:
print("华氏温度 摄氏温度")
for f in range(90, 111):
c = 5 * (f - 32) / 9
print("%8.0f %8.2f" % (f, c))
相关问题
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( "请输入上限:")) 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))
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代码,根据输入的上限和下限,判断人体温度是否正常,并且输出华氏温度与摄氏温度的对应表。
阅读全文