BC36 温度转换

思路:

step1:输入温度;算出计算后的温度;格式化输出字符串;

代码如下:

f = float(input())
c = 5/9 * (f - 32) + 0.000001
print('{:.3f}'.format(c))