输入华氏温度值F,要求用下面的公式计算摄氏温度c,试编写程序。
c=5/9*(F-32)
我编的是这样的,不知道哪儿错了,程序老是报错。请大家帮帮忙。
#include<stdio.h>
#include<math.h>
mian()
{
float F,c;
printf("Enter a number");
scanf("%f",&F);
c=(5/9)*(F-32);
printf("%f\n",c);
}
输入华氏温度值F,要求用下面的公式计算摄氏温度c,试编写程序。
c=5/9*(F-32)
我编的是这样的,不知道哪儿错了,程序老是报错。请大家帮帮忙。
#include<stdio.h>
#include<math.h>
mian()
{
float F,c;
printf("Enter a number");
scanf("%f",&F);
c=(5/9)*(F-32);
printf("%f\n",c);
}
c=(5/9)*(F-32);
改成
c=(5/9.0)*(F-32); 否则 5/9=0