当前位置: 代码迷 >> 综合 >> 编写程序,将华氏度转换为摄氏度。转换公式为:c = 5 * (华氏度f - 32) / 9;其中,c为摄氏度,f为华氏度
  详细解决方案

编写程序,将华氏度转换为摄氏度。转换公式为:c = 5 * (华氏度f - 32) / 9;其中,c为摄氏度,f为华氏度

热度:105   发布时间:2023-11-29 15:16:52.0

#include"stdio.h"
void main()
{
    float f,c;
    printf(“please input the Fahrenheit :\n”);
    scanf("%f",&f);
    c=(f-32)*5/9.0;
    printf(“the Celsius degree  is :%.2f \n”,c);
}

  相关解决方案