实验2-1-2 温度转换 (5分) #include <stdio.h> int main() { int f = 150; float c = 5*(f-32)/9; printf("fahr = 150, celsius = %d",(int)c); return 0; }