c语言编写函数,函数的功能是:将华氏温度转F换为摄氏温度C。转换公式为:C=5*( F- 32)/9。编写一个程序,输出指定范围的华氏温度与摄氏温度的对照表,其中华氏温度步长 为4。输入: 两个空格隔开的整数n,m(且0<n<m<1000)。输出:华氏温度与摄氏温度的对照 表。
时间: 2024-05-02 20:17:00 浏览: 128
C语言实验-输入一个华氏温度f,要求输出摄氏温度c。公式为:c=5(f-32)/9。
5星 · 资源好评率100%
以下是用C语言编写的函数实现题目要求的功能:
```c
#include <stdio.h>
void fahrenheitToCelsius(int n, int m) {
int fahrenheit = n;
float celsius;
printf("Fahrenheit\tCelsius\n"); // 输出表头
while (fahrenheit <= m) {
celsius = 5.0 * (fahrenheit - 32) / 9.0;
printf("%d\t\t%.2f\n", fahrenheit, celsius);
fahrenheit += 4; // 华氏温度步长为4
}
}
```
在主函数中调用该函数并输入n、m的值即可输出对照表:
```c
int main() {
int n, m;
scanf("%d %d", &n, &m);
fahrenheitToCelsius(n, m);
return 0;
}
```
例如,输入n为0,m为20,则输出如下对照表:
```
Fahrenheit Celsius
0 -17.78
4 -15.56
8 -13.33
12 -11.11
16 -8.89
20 -6.67
```
阅读全文