输入一个华氏温度.要求输出摄氏温度.公式为c=5/9(F-32)输出要有文字说明,取2为小数.
输入一个华氏温度.要求输出摄氏温度.公式为c=5/9(F-32)输出要有文字说明,取2为小数.
日期:2019-03-14 03:27:19 人气:1
//
华氏温度与摄氏温度对照表
#include
#include
int
main()
{
float
fahr
=
0,cels
=
0;
int
low
=
0,max
=
300,step
=
20;
printf
("\t=========本程序输出华氏和摄氏的温度对照!==========\n\t2006-12-30\n");
fahr
=
low;
printf
(&qu