网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
以下程序段,运行后的输出结果是()。 char m='b'; if(m++>'b') printf("%cn",m); else printf("%cn",m--);
A.a
B.b
C.c
D.d
参考答案和解析
A 表达式*(pc+5)先将指针向后移动5
更多 “以下程序段,运行后的输出结果是()。 char m='b'; if(m++>'b') printf("%cn",m); else printf("%cn",m--);A.aB.bC.cD.d” 相关考题
考题
有以下程序:void main(){int a=15,b=21,m=0;switch(a%3){case0:m++;break; case 1:m++; switch(b%2){defaule:m++; case 0:m++;break;}}printf("%d\n",m);}程序运行后的输出结果是( )。A.1 B.2 C.3 D.4
考题
有以下程序: main() {int m=12,n=34; printf("%d%d",m++,++n); printf("%d%d\n",n++,++m); } 程序运行后的输出结果是 ______。A.12353514B.12353513C.12343514D.12343513
考题
有下列程序:#includestdio.hmain{ int a=6,b=7,m=1;switch(a%2){ case 0:m++;break;case 1:m++;switch(b%2){ default:m++;case 0:m++;break;}}printf(%d\n,m);}程序的运行结果是( )。A.3B.2C.4D.1
考题
以下程序输出结果是( )。 main { int m=5; if(m++5)printf("%d\n",m): else printf("%d\n",m--); }A.7B.6C.5D.4
考题
有以下程序: main() { char a='a', b; printf("% c, ",++a); printf("% c\n", b=a++); 程序运行后的输出结果是______。A.b, bB.a, bC.b, cD.a, c
考题
以下程序的输出结果是includemain(){inta=15,b=21,m+0;switch(a%3){case0:m++;bteak;c
以下程序的输出结果是 #include<stdio.h> main() {int a=15,b=21,m+0; switch(a%3) {case0:m++;bteak; case 1:m++; switch(b%2) {default:m++; case 0:m++;break;}} printf("%d\n",m);}A.1B.2C.3D.4
考题
有下列程序:includemain(){ int a=6,b=7,m=1;switch(a%2){ case 0:m++;break;case 1:m
有下列程序:#include<stdio.h>main(){ int a=6,b=7,m=1; switch(a%2) { case 0:m++;break; case 1:m++; switch(b%2) { defaut:m++; case0:m++;break; } } printf("%d\n",m);}程序运行后的输出结果是( )。A.1B.2C.3D.4
考题
下列程序的输出结果是______。 main () { int m=5; if (m++>5) printf ("%d\n",m); else printf ("%d\n",m--); }A.7B.6C.5D.4
考题
以下程序的输出结果是()。includemain(){int m=5;if(m++>5)cout
以下程序的输出结果是( )。 #include<iostream.h> main() { int m=5; if(m++>5) cout<<m; else cout<<m--; }A.7B.6C.5D.4
考题
有以下程序 main() { int m=3 n=4,X; X=-m++; x=x+8/++n; printf("%d\n",x); } 程序运行后的输出结果是A.3B.5C.-1D.-2
考题
设有如下程序: #include"stdio.h" main() { char c; int m=0,n=0; while((c=getchar())!='\n') {if(c>='A'c<='Z') m++; else if(c>='a'c<='z')n++;} printf("m=%d,n=%d",m,n);} 如果从键盘上输入:AbCdefGHj<回车>,则程序运行后的输出结果是( )A.m=5,n=4B.m=4,n=5C.m=9,n=0D.无确定值
考题
有以下程序:include main ( ){char a :'a',b; printf( "% c," , + + a); printf("%c
有以下程序: #include <stdio. h> main ( ) { char a :'a',b; printf( "% c," , + + a); printf("%c \n" ,b =a++); }程序运行后的输出结果是( )。A.b,bB.b,cC.a,bD.a,c
考题
有以下程序main() { int m=14,n=24; printf("%d,%d",m++,++n); printf("%d,%d\n",n++,++m); }程序运行后的输出结果是A.15252616 B.14252515 C.14252516 D.14252615
考题
有以下程序 main() { int a=15,b=21,m=0; switch(a%3) { casc 0:m++;break; case 1:m++; switch(b%2) { default:m++; case 0:m++;break; } } printf(“%d\n”,m); } 程序运行后的输出结果是A.1B.2C.3D.4
考题
以下程序的输出结果是#includestdio.hmain(){int a=15,b=21,m=0;switch(a%3){case 0:m++;break;case 1:m++;switch(b%2){ default:m++;case 0:m++;break; } }printf("%d\n",m);}A.1B.2C.3D.4
考题
以下程序的输出结果是______。 main() { int m=5; if(m++>5) printf("%d\n",m); else printf("%d\n",m--); }A.7B.6C.5D.4
考题
有以下程序: include main( ){ int m =12,n=34;printf( "% d% d" ,m++ , ++n);printf(
有以下程序: #include <stdio.h>main( ){ int m =12,n=34; printf( "% d% d" ,m++ , ++n); printf("% d% d \n" ,n ++ , ++m); }程序运行后的输出结果是( )。A.12353514B.12353513C.12343514D.12343513
考题
以下程序的输出结果是()。includemain(){int a=8,b=6,m=1;switch(a%4){case 0:m++;brea
以下程序的输出结果是( )。 #include<stdio.h> main() {int a=8,b=6,m=1; switch(a%4) {case 0:m++; break; case 1:m++; switch(b%3) {default:m++; case 0:m++;break; } } printf("%d\n",m);}A.1B.2C.3D.4
考题
有以下程序:includemain(){int a=6,b=7,m=I;switch(a%2){case 0:m++;break;case 1:m++
有以下程序: #include<stdio.h> main() {int a=6,b=7,m=I; switch(a%2) {case 0:m++;break; case 1:m++; switch(b%2) {defaut:m++; case 0:m++;break; } } printf("%d\n",m); } 程序运行后的输出结果是( )。A.1B.2C.3D.4
考题
有以下程序段: inti,j,m=0; for(i=1;i<;=15;i+=4) for(j一3;j<;=19;j+=4)m++; printf(‘‘%d\n‘‘,m); 程序段的输出结果是( )。A.12B.15C.20D.25
考题
以下程序的输出结果是includemain(){ inta=15/b=21,m=0;switch(a%3){ case0:m++;break
以下程序的输出结果是 #include<stdio.h> main() { int a=15/b=21,m=0; switch(a%3) { case0:m++;break; case 1:m ++; switch(b%2) { default:m++; case 0:m ++;break;}} printf("%d\n",m);}A.1B.2C.3D.4
考题
有下列程序: include main() {int a=6,b=7,m=1; switch(a%2) {case 0:m++;break; cas
有下列程序:#include<stdio.h>main(){ int a=6,b=7,m=1;switch(a%2){ case 0:m++;break;case 1:m++;switch(b%2){ defaut:m++;case0:m++;break;}}printf("%d\n",m);}程序运行后的输出结果是( )。A.1B.2C.3D.4
考题
填空题以下程序运行后的输出结果是()。 main( ) {int a=1,b=3,c=5; if(c=a+b) printf(“yes”); else printf(“not”); }
考题
单选题有以下程序:#includemain(){ int i; for(i=1;i=5;i++) { if(i%2)printf(*); else continue; printf(#); } printf($);}程序运行后的输出结果是( )。A
*#*#*#$B
*#*#*$C
*#*#$D
*#*#*#*$
热门标签
最新试卷