正文 C语言编写程序,输入华氏温度值F,求摄氏温度C 德普IT V管理员 /2025-03-04/1阅读/0评论 0304 ```c include int main() { float fahrenheit, celsius; // 输入华氏温度 printf("Enter temperature in Fahrenheit: "); scanf("%f", &fahrenheit); // 计算摄氏温度 celsius = (fahrenheit 32) 5 / 9; // 输出摄氏温度 printf("Temperature in Celsius: %.2fn", celsius); return 0; -- 展开阅读全文 --