c语言编程问题,谢谢 看一下题目帮我改一下代码吧 5
c语言编程问题,谢谢看一下题目帮我改一下代码吧Description输出一张摄氏一华氏温度转换表,摄氏温度的取值区间是[-100摄氏度,150摄氏度],温度间隔5摄氏度。...
c语言编程问题,谢谢 看一下题目帮我改一下代码吧Description
输出一张摄氏一华氏温度转换表,摄氏温度的取值区间是[-100摄氏度,150摄氏度],温度间隔5摄氏度。要求定义和调用函数 ctof(c),将摄氏温度C转换成华氏温度F,计算公式:
F = 32 + C* 9/5。
例如
c=0->f=32
c=5->f=41
c=10->f=50
c=15->f=59
c=20->f=68
c=25->f=77
c=30->f=86
c=35->f=95
c=40->f=104
c=45->f=113
c=50->f=122
c=55->f=131
c=60->f=140
c=65->f=149
Input
Output
Sample Input
Sample Output
#include<stdio.h>
int main()
{int f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14;
int ctof(int c);
f1=ctof(0);
f2=ctof(5);
f3=ctof(10);
f4=ctof(15);
f5=ctof(20);
f6=ctof(25);
f7=ctof(30);
f8=ctof(35);
f9=ctof(40);
f10=ctof(45);
f11=ctof(50);
f12=ctof(55);
f13=ctof(60);
f14=ctof(65);
printf("c=0->f=%d\nc=5->f=%d\nc=10->f=%d\nc=15->f=%d\nc=20->f=%d\nc=25->f=%d\nc=30->f=%d\nc=35->f=%d\nc=40->f=%d\nc=45->f=%d\nc=50->f=%d\nc=55->f=%d\nc=60->f=%d\nc=65->f=%d\n",f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14);
return 0;}
int ctof(int c)
{int F;
F=32+c*9/5;
return(F);
} 展开
输出一张摄氏一华氏温度转换表,摄氏温度的取值区间是[-100摄氏度,150摄氏度],温度间隔5摄氏度。要求定义和调用函数 ctof(c),将摄氏温度C转换成华氏温度F,计算公式:
F = 32 + C* 9/5。
例如
c=0->f=32
c=5->f=41
c=10->f=50
c=15->f=59
c=20->f=68
c=25->f=77
c=30->f=86
c=35->f=95
c=40->f=104
c=45->f=113
c=50->f=122
c=55->f=131
c=60->f=140
c=65->f=149
Input
Output
Sample Input
Sample Output
#include<stdio.h>
int main()
{int f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14;
int ctof(int c);
f1=ctof(0);
f2=ctof(5);
f3=ctof(10);
f4=ctof(15);
f5=ctof(20);
f6=ctof(25);
f7=ctof(30);
f8=ctof(35);
f9=ctof(40);
f10=ctof(45);
f11=ctof(50);
f12=ctof(55);
f13=ctof(60);
f14=ctof(65);
printf("c=0->f=%d\nc=5->f=%d\nc=10->f=%d\nc=15->f=%d\nc=20->f=%d\nc=25->f=%d\nc=30->f=%d\nc=35->f=%d\nc=40->f=%d\nc=45->f=%d\nc=50->f=%d\nc=55->f=%d\nc=60->f=%d\nc=65->f=%d\n",f1,f2,f3,f4,f5,f6,f7,f8,f9,f10,f11,f12,f13,f14);
return 0;}
int ctof(int c)
{int F;
F=32+c*9/5;
return(F);
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询