编写一个函数把华氏温度转换为摄氏温度
时间: 2023-09-25 08:15:23 浏览: 296
以下是Python代码实现:
```python
def fahrenheit_to_celsius(fahrenheit):
celsius = (fahrenheit - 32) * 5 / 9
return celsius
```
使用方法:
```python
>>> fahrenheit_to_celsius(32)
0.0
>>> fahrenheit_to_celsius(68)
20.0
>>> fahrenheit_to_celsius(100)
37.77777777777778
```
相关问题
.编写一个函数把华氏温度转换为摄氏温度。
可以使用以下公式将华氏温度转换为摄氏温度:
C = (F - 32) * 5/9
其中,C表示摄氏温度,F表示华氏温度。
以下是一个Python函数,可以将华氏温度转换为摄氏温度:
```python
def fahrenheit_to_celsius(fahrenheit):
celsius = (fahrenheit - 32) * 5/9
return celsius
```
你可以将华氏温度作为参数传递给该函数,并得到相应的摄氏温度。例如:
```python
>>> fahrenheit_to_celsius(68)
20.0
>>> fahrenheit_to_celsius(86)
30.0
```
用C加加程序设计编写一个函数把华氏温度转换为摄氏温度
以下是用C++编写的华氏温度转换为摄氏温度的函数:
```cpp
#include <iostream>
using namespace std;
double fahrenheitToCelsius(double fahrenheit)
{
double celsius = (fahrenheit - 32) * 5 / 9;
return celsius;
}
int main()
{
double fahrenheit = 75.5;
double celsius = fahrenheitToCelsius(fahrenheit);
cout << fahrenheit << " degrees Fahrenheit is equal to " << celsius << " degrees Celsius." << endl;
return 0;
}
```
这个程序定义了一个名为`fahrenheitToCelsius`的函数,该函数接受一个华氏温度值作为参数,并返回一个摄氏温度值。在`main`函数中,我们声明了一个名为`fahrenheit`的变量,将其设置为75.5度华氏,并使用`fahrenheitToCelsius`函数将其转换为摄氏温度。最后,我们将结果输出到控制台。