其他分享
首页 > 其他分享> > 【C语言】练习题01--温度转换

【C语言】练习题01--温度转换

作者:互联网

温度转换

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

#include <stdio.h>

int main()
{
	float f = 98.0;
	float c;
	//c = (5 / 9) * (f - 32);//错误
	c = (5.0 / 9) * (f - 32.0);//注意此处应该是5.0
	printf("华氏温度转换的摄氏度为:%f\n", c);

	return 0;
}

标签:练习题,5.0,01,转换,--,float,C语言,华氏温度,温度
来源: https://blog.csdn.net/weixin_46293452/article/details/113728264