2 条题解

  • 0
    @ 2023-2-11 23:44:07
    a = int(input())
    print("C=",round(5 * (a - 32) / 9,2),sep = "")
    • 0
      @ 2021-11-14 11:32:58
      f = int(input())
      print("C=", end="")
      c = 5 * (f-32) / 9
      print(format(c, '.2f'))
      
      • 1

      信息

      ID
      1376
      时间
      1000ms
      内存
      128MiB
      难度
      4
      标签
      递交数
      34
      已通过
      17
      上传者