C语言编程问题
输入一个华氏温度,通过公式c=5/9(F-32)转换成为摄氏度,并输出结果#include"stdio.h"
main()
{
float F,c;
printf("Please Enter Number");
scanf("%f",&F);
c=5/9(F-32);
printf("%f",c);
getch();
}
求指教,谢谢
2013-10-31 19:56
2013-10-31 21:02

2013-11-01 11:30
2013-11-01 15:55