#include<stdio.h>
int main()
{
double F=0,c=0;
scanf("%f",&F);
c=5*(F-32)/9;
printf(“c=%.2f”,c);
return 0;
}

更多推荐

[编程入门]温度转换