编写c++函数实现华氏温度转换为摄氏温度
时间: 2024-05-04 13:19:17 浏览: 105
ceshi.zip_C++ 语音播报_华氏温度
下面是一个简单的 C++ 函数实现华氏温度转换为摄氏温度的代码:
```cpp
#include <iostream>
using namespace std;
double fahrenheitToCelsius(double fahrenheit)
{
double celsius = (fahrenheit - 32) * 5 / 9;
return celsius;
}
int main()
{
double fahrenheit, celsius;
cout << "Enter the temperature in Fahrenheit: ";
cin >> fahrenheit;
celsius = fahrenheitToCelsius(fahrenheit);
cout << "The temperature in Celsius is: " << celsius << endl;
return 0;
}
```
在这个例子中,我们定义了一个名为 `fahrenheitToCelsius` 的函数,它接受一个表示华氏温度的参数,并返回相应的摄氏温度。在 `main` 函数中,我们首先要求用户输入一个华氏温度,然后调用 `fahrenheitToCelsius` 函数将其转换为摄氏温度,并将结果打印到控制台上。
阅读全文