c语言编写函数,函数的功能是:将华氏温度转F换为摄氏温度C。转换公式为:C=5*(F- 32)/9。编写一个程序,输出指定范围的华氏温度与摄氏温度的对照表,其中华氏温度步长 为4。输入: 两个空格隔开的整数n,m(且0<n<m<1000)。输出:华氏温度与摄氏温度的对照 表。
时间: 2024-05-12 11:17:00 浏览: 33
好的,我可以帮你做这道题目。以下附上C语言的代码:
```
#include <stdio.h>
int main() {
int n, m;
scanf("%d %d", &n, &m);
printf("Fahrenheit\tCelsius\n");
for (int i = n; i <= m; i += 4) {
float celsius = 5 * (i - 32) / 9.0;
printf("%d\t\t%.1f\n", i, celsius);
}
return 0;
}
```
你可以将以上代码复制到C语言的编辑器中进行运行。
如有需要,请告诉我。
相关问题
C语言编写函数,函数的功能是:将华氏温度转F换为摄氏温度C。转换公式为:C=5*(F-32)/9。编写一个程序,输出指定范围的华氏温度与摄氏温度的对照表,其中华氏温度步长为4。输入: 两个空格隔开的整数n,m(且0<n<m<1000)。输出:华氏温度与摄氏温度的对照表。
这是一个关于C语言编写函数的问题,我可以回答。以下是符合要求的代码:
#include <stdio.h>
void fahrenheit_to_celsius(int start, int end) {
int f;
printf("华氏温度 摄氏温度\n");
for (f = start; f <= end; f += 4) {
printf("%5d %5.1f\n", f, 5.0 * (f - 32) / 9);
}
}
int main() {
int n, m;
scanf("%d %d", &n, &m);
fahrenheit_to_celsius(n, m);
return 0;
}
以上代码会输出一个指定范围的华氏温度与摄氏温度的对照表,其中华氏温度步长为4。如果您有更多的问题,请随时问我。
c语言编写函数,函数的功能是:将华氏温度转F换为摄氏温度C。转换公式为:C=5*( F- 32)/9。编写一个程序,输出指定范围的华氏温度与摄氏温度的对照表,其中华氏温度步长 为4。输入: 两个空格隔开的整数n,m(且0<n<m<1000)。输出:华氏温度与摄氏温度的对照 表。
以下是用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
```
阅读全文