#include
int main()
{
float F,c;
while(1)
printf("请输入华氏温度:");
scanf("%f",&F);
c=5*(F-32)/9;
printf("摄氏温度为:%0.2f",c);
return 0;
}