知识:1 摄氏度=33.8 华氏度
double f_to_c(int f) { double c=(5*(f-32))/9; return c; }
double c_to_f(int c) { double f=(5/9)*c + 32; return f; }