print("华氏温度 摄氏温度") for__1__ in range(__2__,__3__): c = 5 * (f - 32 ) / 9 print ("%8.0f %8.2f" % (f , c))
时间: 2023-12-25 16:06:58 浏览: 140
这段代码存在语法错误,需要修改:
```
print("华氏温度 摄氏温度")
for f in range(1, 101):
c = 5 * (f - 32) / 9
print("%8.0f %8.2f" % (f , c))
```
这段代码的功能是输出华氏温度从1到100度对应的摄氏温度,其中 `%8.0f` 和 `%8.2f` 是格式化输出,表示输出的浮点数占8个字符的宽度,其中小数部分保留2位。
相关问题
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代码,根据输入的上限和下限,判断人体温度是否正常,并且输出华氏温度与摄氏温度的对应表。
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))
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))
阅读全文