Problem1019--§1 2.3.3温度表达转化

1019: §1 2.3.3温度表达转化

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

利用公式 $C = \frac{5*(F-32)}{9}$ (其中 C 表示摄氏温度,F 表示华氏温度) 进行计算转化。
【来源】信奥一本通,第二章,第三节,第3题,Page25。

Input

输入一行,包含一个实数 $f\ (-459.67 \leq f \leq 10^{18})$,表示华氏温度。

Output

输出一行,包含一个实数,表示对应的摄氏温度,要求精确到小数点后 $5$ 位。

Sample 1 Input

41

Sample 1 Output

5.00000

Sample 2 Input

23.5

Sample 2 Output

-4.72222

Source/Category

C++语法 1.2.顺序结构