练习2-8 计算摄氏温度 (10 分) #include<stdio.h> int main(){ int F ; scanf("%d",&F) ; printf("Celsius = %d" , 5 * (F - 32) / 9) ; }