1115: 零起点学算法22——华氏摄氏温度转换
Time Limit: 1 Sec Memory Limit: 64 MB 64bit IO Format: %lld
Submitted: 3522 Accepted: 1456
[Submit][Status][Web Board]
Description
输入一个华氏温度,根据公式C=(5/9)(F-32)计算对应的摄氏温度。
Input
输入一个华氏温度值(多组数据)
Output
输出输入的华氏温度和转换后的摄氏温度值。
输入格式请参考样例(每组数据一行)
Sample Input
100
Sample Output
fahr=100.000000,celsius=37.777779
HINT
计算中所有数据使用 float 类型 注意 float 常量的写法
Source
1 #include<stdio.h> 2 int main(){ 3 float f,c; 4 while(scanf("%f",&f)!=EOF){ 5 c=5.0/9*(f-32); 6 printf("fahr=%f,celsius=%f\n",f,c); 7 } 8 return 0; 9 }
时间: 2024-10-10 00:35:24