0.0分

10 人评分

  评论区

def ctof(x):#定义一个函数
    a = 32 + x * 9 / 5
    return int(a)

for x in range(-100, 151, 5):
    print("c={0}->f={1}".format(x, ctof(x)))
2021-02-01 14:27:36
def ctof(x):#定义一个函数
    a = 32 + x * 9 / 5
    return int(a)

for x in range(-100, 151, 5):
    print("c={0}->f={1}".format(x, ctof(x)))#科学技术法输出
2021-02-01 14:26:54
2020-10-05 16:34:21
  • «
  • 1
  • »