《C语言程序设计》
阅读程序写结果试题
汇总
汇总
阅读程序写结果试题
第四章选择结构(共20道题)
1.(于蕾)
#i nclude <stdio.h>
void mai n()
{
int x,y,t; x=7;y=9; if(x<y)
{ t=x;x=y;y=t;} printf("%d,%d\n", x,y );
}
运行结果:
9,7
2.(于蕾)
#i nclude <stdio.h>
void mai n()
{
int x=1,a=2,b=3;
switch(x)
{ case 1: a--; break;
case 2: b++; break;
case 3: a++;b++;
}
prin tf("\na=%d,b=%d\n",a,b);
}
运行结果:
a=1,b=3
3.(于蕾)
#i nclude <stdio.h>
void mai n()
{
char chi = 'E';
if(ch1 >= 'A') ch1++;
else
ch1+=32;
printf("ch1 = %c\n", ch1);
}
运行结果:
ch仁F
4.(于蕾)
#i nclude <stdio.h>
void mai n()
{
int x,y,t; x=5;y=3;
if(x>y)
{ t=x;x=y;y=t;} prin tf("%d,%d\n" , x,y );
}
运行结果:
c语言培训班推荐3,5
5.(王伟)
#i nclude <stdio.h>
int main()
{
int a,b,c,m;
prin tf("E nter three in tegers:"); sca nf("%d%d%d",&a,&b,&c); if(a<=b)
m=a;
else
m=b;
if(c<m)
m=c;
prin tf("m=%d\n",m); return 0;
}
输入:21 22 23<回车>
运行结果:
m=21
6.(王伟)
#i nclude <stdio.h>
int main()
{
char ch1='a',ch2='B',ch3='E'; if(ch1>ch2)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论