参考代码如下
#includeint main(){ double c,f; scanf("%lf",&f); printf("华氏温度%.2lf度 = 摄氏温度%.2lf度",f,5.0*(f-32)/9.0);}