...将摄氏度(C)转换为华氏度(f),转换公式为:F=(9/5)*c+32
发布网友
发布时间:2024-10-24 13:23
我来回答
共3个回答
热心网友
时间:2024-11-01 11:51
#include<stdio.h>
float change(float x);
void main(){
float fahr;
printf("请输入摄氏温度:");
scanf("%f",&fahr);
printf("\n对应的华氏温度为:%.1f\n\n",change(fahr));
}
float change(float x){
float cent=x*9/5+32;
return cent;
}
提问前先百度
热心网友
时间:2024-11-01 11:48
c语言的表达式和数学是差不多的,,,,
热心网友
时间:2024-11-01 11:51
#include<stdio.h>
float change(float x);
void main(){
float fahr;
printf("请输入摄氏温度:");
scanf("%f",&fahr);
printf("\n对应的华氏温度为:%.1f\n\n",change(fahr));
}
float change(float x){
float cent=x*9/5+32;
return cent;
}