C语言程序:
#include <stdio.h>int main()
{
double f, c
printf("请输入摄氏温度值:")
scanf("%lf", &c)
f = 9.0 / 5 * c + 32
printf("华氏温度值:%lf\n", f)
printf("请输入华氏温度值:")
scanf("%lf", &f)
c = (f - 32) * 5 / 9
printf("摄氏温度值:%lf\n", c)
return 0
}
运行测试:
请输入摄氏温度值:35华氏温度值:95.000000
请输入华氏温度值:95
摄氏温度值:35.000000
输入一个华氏温度F,要求输出摄氏温度C。
通过程序来计算式子:(a + b)*c/(d*d - e*e*e)。
摄氏度华氏度之间的关系:
摄氏温度(℃)和华氏温度(℉)之间的换算关系为: 华氏度=摄氏度×1.8+32 摄氏度=(华氏度-32)÷1.8 5(华氏度-50)=9(摄氏度-10)。
注意:若F为华氏温度,C为摄氏温度,则转换公式为C=5/9 (F−32),输出结果取2位小数。特别注意公式转换为C语言表达式时的正确性。
语言-计算摄氏温度
#include<stdio.h>
intmain()
{
intF,C
scanf("%d",&F)
C=5*(F-32)/9
printf("Celsius=%d",C)
return0
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)