收起
#include <stdio.h> int main() { int fahr = 100; int celsius = 5*(fahr-32)/9; printf("fahr = %d, celsius = %d",fahr,celsius); return 0; }
报告相同问题?