解题思路:利用函数,并用计算公式F = 32 + C* 9/5
注意事项:注意运行格式,注意换行,我这个答案错误,但运行结果是正确的,不知道怎么回事!!
参考代码
#include<stdio.h>
#include<math.h>
void ctofc(int c,int F)
{
for(c=-100;c<=150;c=c+5)
{
F = 32 + c* 9/5;
printf("C=%d->f=%d\n",c,F);
}
}
int main()
{
int c,F;
ctofc(c,F);
return 0;
}
0.0分
3 人评分