pta天梯L1-004 计算摄氏温度
L1-004 计算摄氏温度 - 团体程序设计天梯赛-练习集
import sys
input = lambda: sys.stdin.readline().strip()
def slove():
F = int(input())
a = 'Celsius = '
ans = 5 * (F - 32) / 9
ans = int(ans)
a += str(ans)
print(a)
slove()
L1-004 计算摄氏温度 - 团体程序设计天梯赛-练习集
import sys
input = lambda: sys.stdin.readline().strip()
def slove():
F = int(input())
a = 'Celsius = '
ans = 5 * (F - 32) / 9
ans = int(ans)
a += str(ans)
print(a)
slove()