1 //将华氏温度转换为摄氏温度
2 //第一种
3 #include<stdio.h>
4 这里为什么不用命名空间?
5 int main()
6 {
7 int c, f;
8 double c, f;
9 printf("f=");
10 scanf("%lf", &f);//(%lf) 是什么?(&f)又是什么?scanf有什么作用?
11 c = (f-32)/1.8;
12 printf("c=%lf\n", c);//这句完全不懂?
13
14 return 0;
15 }
16
17
18 //第二种
19 //这样写为什么不行?
20 #include<iostream>
21 using namespace std;
22 int main()
23 {
24 double a;
25 cout<<"华氏温度为:"<<endl;
26 cin>>a;
27 double b=5*(a-12)/9;
28 cout<<"摄氏温度为:"<<b<<endl;
29 return 0;
30 }
详细点谢谢^^
蝴蝶不菲
qq_笑_17
繁星点点滴滴
慕桂英4014372