#include<stdio.h>//此代码为摄氏度温度公式计算int main(){ float c,f; scanf("%f",&f); c=5*(f-32)/9; printf("%.1f",c); return 0;}