将华氏温度转换为摄氏温度的程序
时间: 2023-10-26 16:08:31 浏览: 96
C语言程序设计-输入华氏温度求摄氏温度;转换公式为 c=59(f-32),输出结果取两位小数;.c
华氏温度转换为摄氏温度的公式是:C = (F - 32) * 5/9
下面是一个示例程序:
```python
def fahrenheit_to_celsius(fahrenheit):
celsius = (fahrenheit - 32) * 5/9
return celsius
fahrenheit = float(input("请输入华氏温度:"))
elsius = fahrenheit_to_celsius(fahrenheit)
print("摄氏温度为:", celsius)
```
阅读全文