每天,气象站接收 5 个以华氏度表示的温度。编写一个程序以接受华氏温度,将其转换为摄氏温度并在屏幕上显示转换后的温度。5 个温度后,屏幕上应显示消息“所有温度已处理”
我的答案如下
#include <stdio.h>
main()
{
int fah, cel;
printf("\nEnter 5 temperatures in Fahrenheit: ");
scanf("%d %d %d %d %d", &fah);
do
{
cel=(fah-32)*(5/9);
printf("\n These temperatures converted to Celsius are: %d \n", cel);
}
while(fah);
}