> 其他 >
用C语言编写一个程序 将华氏27度转换为摄氏度C?
利用公式C =(F - 32)/1.8 在TC中
人气:462 ℃ 时间:2020-04-14 19:13:39
解答
#include "stdio.h"
main()
{
float C;
int F=27;
C=(F-32)/1.8;
printf("%f",C);
}
推荐
猜你喜欢
© 2024 79432.Com All Rights Reserved.
电脑版|手机版