编写程序,计算并输出华氏温度为80F所对应的摄氏温度C。 转换公式为:C=5* (F-32) /9
时间: 2024-05-05 18:15:42 浏览: 125
```python
fahrenheit = 80
celsius = 5 * (fahrenheit - 32) / 9
print("华氏温度为", fahrenheit, "度,对应的摄氏温度为", celsius, "度。")
```
输出结果为:
```
华氏温度为 80 度,对应的摄氏温度为 26.666666666666668 度。
```
相关问题
用c语言编写程序,计算并输出华氏温度为80F所对应的摄氏温度C。 转换公式为:C=5* (F-32) /9
```c
#include <stdio.h>
int main() {
float fahrenheit = 80; // 摄氏温度
float celsius; // 华氏温度
celsius = 5 * (fahrenheit - 32) / 9;
printf("华氏温度为 %.2f°F,对应的摄氏温度为 %.2f°C", fahrenheit, celsius);
return 0;
}
```
温度转换。题目描述 题目内容:编写程序,用C语言计算并输出华氏温度为80F所对应的摄氏温度C。 转换公式为:C=5*(F-32)/9 输出样例:**.******测试用例
以下是使用C语言编写的温度转换程序,计算并输出华氏温度为80F所对应的摄氏温度C:
```c
#include <stdio.h>
#include <stdlib.h>
int main() {
float F, C;
F = 80;
C = (5 * (F - 32)) / 9;
printf("c=%.2f\n", C); // 输出:c=26.67
return 0;
}
```
阅读全文