柚子31
2016-10-12 17:37
题目:写一个程序,打印相应的摄氏华氏度
(write a program to print the corresponding Celsius to Fahrenheit table)
我的解答:
#include<stdio.h>
int main()
{
float Celsius,Fahrenheit;
Fahrenheit==32+1.8*Celsius;
printf("%.1f\n",Fahrenheit);
return 0;
}
#include <stdio.h> int main() { float Celsius,Fahrenheit; printf("请输入要转换的华氏温度:"); scanf("%f",&Fahrenheit); Celsius = (Fahrenheit-32)*5/9.0; printf("转化后的的摄氏温度为:%.2f \n",Celsius); return 0; }
你没有用
scanf输入变量数据
“==”是进行判断,“=”是赋值
并没有错,应该是你在输入数据时有错吧!
#include <stdio.h>
void main()
{
float F,C;
printf("需要转换的华氏温度:");
scanf("%f",&F);
C = (F-32)*5/9.0;
printf("对应的摄氏温度为:%.2f \n",C);
}
C语言入门
926028 学习 · 20793 问题
相似问题