下列程序运行时 , 若输入 labcedf2df< 回车 > 输出结果为【 1 0 】
#include <stdio.h>
main()
{ char a=0,ch;
while((ch=getch ar ())!='\n')
{ if(a%2!=0&&(ch>='a'&&ch<='z')) ch=ch-'a'+'A';
a++; putchar(ch);
}
printf("\n");
}
第1题:
有以下程序:
执行时输入:aBeDefG<;回车>;,则输出结果是( )。
A.AbCdEFg
B.ABCDEFG
C.BCDEFGH
D.bedefgh
第2题:
若有以下程序
执行时若输入:(其中<;Enter>;表示回车符)
Fig flower is red.<;Enter>;
则输出结果是
A.wet is red.Fig Co is blue.
B.wet is red.Fig flo
C.wet is red.The sky is blue.
D.Fig flower is red.The sky is blue.
第3题:
有以下程序
程序运行时从第一列开始输入:abcdefg<;回车>;,则输出结果是
A.abcdefg
B.bcddgh
C.abcdefg
D.bcddgh$
第4题:
有以下程序:
执行时输入:0<;回车>;后,则输出结果是( )。
A.5,
B.0,0,0,0,0,
C.0,1,2,3,4,
D.0,1.
第5题:
若有以下程序
执行时若输入:
Fig flower is red.<;回车>;
则输出结果是
A.Fig flower is red.is blue.
B.Fig flower is red.
C.Fig floweris red.
D.Fig floweris
第6题:
【填空题】下列程序运行时,若输入labced12df<回车> 输出结果为 #include <stdio.h> main() {char a =0,ch; while((ch=getchar())!=’n’) {if(a&2!=0&&(ch>’a’&&ch<=’z’)) ch=ch-‘a’+’A’; a++;putchar(ch); } printf(“n”); }