1685: 温度转换
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:62
Solved:46
Description
编一程序,将摄氏温度换为华氏温度。公式为:f=9/5*c+32。其中f为华氏温度,c是摄氏温度。
Input
输入一行,只有一个整数c。(0<=c<=1000)
Output
输出只有一行,包括1个实数。(保留两位小数)
Sample Input Copy
50
Sample Output Copy
122.00
HINT
参考程序: