C语言题求助!!编写程序,输入摄氏温度c,输出华氏温度h(华氏温度=(9/5)*摄氏温度+32)。
发布网友
发布时间:2022-04-29 23:54
我来回答
共2个回答
热心网友
时间:2023-10-10 17:43
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
void main()
{
float choice ,h;
while(1)
{
printf("请输入温度:");
scanf("%f",&choice);
getchar();
printf("\n");
if(choice != 0){
h= (float)((9.0/5)*choice+32);
printf("华温度:%.2f\n\n",h);
}else{
exit(0);
}
}
//system("cls");
}
热心网友
时间:2023-10-10 17:43
#include<stdio.h>
main()
{
float c,h;
while(1)
{
printf("Please input the C :");
scanf("%f",&c);
if(c!=0)
{printf("The H is : %f\n",(9/5)*c+32);}
else break;
}
}追问不对啊。。。我运行后输出的结果不是这样