为什么我求的这个程序无法运行,求c语言方法解答!
题目:写一个程序,打印相应的摄氏华氏度
(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;
}