C语言:华氏温度转换为摄氏温度

1.题目:有人用温度计测量出华氏温度98°F,现在要求用C语言实现把它转换为摄氏法表示的温度。

2.代码:

#include

int main()
{
    float f,c;
    printf("请输入华氏温度:\n");
    scanf("%f", &f);
    c=(f-32)*5/9;
    printf("摄氏温度是:%f\n",c);
    return 0;
}

你可能感兴趣的:(c语言,开发语言)