编写一个程序,输入一个华氏温度,输出摄氏温度。公式为C=5×(F-32)+9。其中,C为摄氏温度,F为华氏温度。输出要有文字说明,结果保留两位小数。(C语言)
时间: 2024-10-22 11:29:27 浏览: 29
赋值运算-c语言课件\\第2章 用C语言编写程序
在C语言中,你可以创建一个简单的程序来实现这个转换。下面是一个示例:
```c
#include <stdio.h>
#include <math.h> // 引入数学库以使用浮点数计算
// 函数声明
double fahrenheit_to_celsius(double f);
int main() {
double fahrenheit;
printf("请输入华氏温度: ");
scanf("%lf", &fahrenheit); // 输入华氏温度
// 转换并打印摄氏温度
double celsius = fahrenheit_to_celsius(fahrenheit);
printf("将 %.2f 华氏度转换为摄氏温度是 %.2f 度.\n", fahrenheit, celsius);
return 0;
}
// 实现华氏到摄氏的转换函数
double fahrenheit_to_celsius(double f) {
return (5 * (f - 32)) + 9; // 根据给定公式计算
}
```
当你运行此程序时,它会提示用户输入华氏温度,然后使用提供的公式计算出相应的摄氏温度,并显示结果,保留两位小数。
阅读全文