kakayuyi 的 站内主页
1、输入一个华氏温度,要求输出摄氏温度。公式为c=5/9(F-32)输出要有文字说明,取2位小数。答案为:main(){float c,f;printf("请输入一个华氏温度:\n");scanf("%f",&f);c=(5.0/9.0)*(f-32); printf("摄氏温度为:%5.2f\n",c);}我做的:#include <stdio.h&g....
Read More >