Problem B: C语言-温度换算
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:37334
Solved:16594
Description
输入一个华氏温度F,要求输出摄氏温度。公式为 C=5 / 9 *(F-32), 输出要求有文字说明,取位2小数。
Input
一个华氏温度,浮点数。
Output
摄氏温度,浮点两位小数。格式: printf("F=%7.2f, c=%7.2f\n", f, c);
Sample Input Copy
40
Sample Output Copy
F= 40.00, c= 4.44