1100303 - 温度表达转化

include

using namespace std; main( ){ double c,f; scanf("%lf",&f); c=5*(f-32)/9; printf("%.5lf",c); }