int main() { float c, f; scanf_s("%f", &c); f = 9 * c / 5 + 32; printf("摄氏度c=%.2f时,华氏度f=%.2f", c, f); }