网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
有以下程序     main( )    {int a=O,b=O,C=0,d=0;      if(a=1)b=l;C=2;      else d=3:  printf(“%d,%d,%d,%d/n”,a,b,C,d);     }  程序执行后的输出结果是()
A

0,O,O,3

B

O,1,2,0

C

1,1,2,0

D

编译有错


参考答案

参考解析
解析: 暂无解析
更多 “单选题有以下程序     main( )    {int a=O,b=O,C=0,d=0;      if(a=1)b=l;C=2;      else d=3:  printf(“%d,%d,%d,%d/n”,a,b,C,d);     }  程序执行后的输出结果是()A 0,O,O,3B O,1,2,0C 1,1,2,0D 编译有错” 相关考题
考题 有以下程序 include int i=0; void fun( ) { { static int i=1 有以下程序 #include<iostream> int i=0; void fun( ) { { static int i=1; Std::cout<<i++<<','; } Std::cout<<i<<','; } int main( ) { fun();fun(); return O; } 程序执行后的输出结果是A.1,2,1,2,B.1,2,2,3,C.2,0,3,0,D.1,0,2,0,

考题 下列程序的输出结果为includeint func (int n){if ( n 下列程序的输出结果为 #include<iostream.h> int func (int n) { if ( n <1)return l; else return n+func ( n-1 ); return O; } void main( 0 { cout <<func(5)<<end1; }A.0B.10C.15D.16

考题 有以下程序: #includestdio.h main( ) { char a[5][10]={"one","tw0","three","four","five"}; int i,j; char t: 、 for(i=0;i4;i++) for(j=i+1;j5;j++) if(a[i][O]a[j][0]) {t=a[i][O];a[i][O]=a[j][O];a[j][O]=t;) puts(a[1]); } 程序运行后的输出结果是( )。A.fwoB.fixC.twoD.owo

考题 include void main(){ int i=0,s=0O while(s #includevoid main(){int i=0,s=0Owhile(scout}输出结果:

考题 有以下程序: include using namespace std; int f(int); int main() {int i;for(i=0; 有以下程序:include <iostream>using namespace std;int f(int);int main(){int i;for(i=0;i<5;i++)cout<<f(i)<<" ";return 0;}int f(int i){static int k=1;for(;i>0;i--)k+=i;

考题 阅读下列程序,并写程序运行结果【】。include void main() { for(int i=0;i 阅读下列程序,并写程序运行结果【 】。include<iomanip. h>void main() {for(int i=0;i<4;i++)cout<<end1<<setfill(' ')<<setw(4-i)<< '0'<<setfill('*')<<setw(i+i)<<(i>0?' O' : ' ' );}

考题 以下程序的执行结果是______。 main() { int i,j,m=O,n=0; for (i=0;i<2;i++) {for (j=0;j<2;j++) if(j>=i) m=1;n++; printf("%d\n",n); } }A.4B.2C.1D.0

考题 以下程序的执行结果是 ______。 include void main() { int a=o,b=1,c=0,d=20; if (a 以下程序的执行结果是 ______。include<iostream.h>void main(){int a=o,b=1,c=0,d=20;if (a) d=d-10;else if(! b)if(!c) d=15;else d = 25;cout<<"d="<< d << endl;}

考题 若有以下程序:include using namespace std;int f(){static int i = O;ints= 1;s+=i; 若有以下程序:#include <iostream>using namespace std;int f(){ static int i = O; ints= 1; s+=i; i++; return s;}int main(){ int i, a =0; for(i=0;i<5;i++) a+=f(); cout<<a<<end1; return 0;}程序运行后,输出的结果是( )。A.20B.24C.25D.15

考题 有以下程序 include int fun(char s[]) { int n=O; whil 有以下程序 #include <stdio.h> int fun(char s[]) { int n=O; while(*s<='9'*s>='0') { n=10*n+*s-'0'; s++; } return (n); } main() { char s[10]={ '6', '1', '*', '4', '*', '9', '*', '0', '*'}; printf("%d\n",fun(s)); }A.9B.61490C.61D.5

考题 有以下程序:include using namespace std;int main ( ){ int n[3],i,j,k = 2; for(i 有以下程序: #include <iostream> using namespace std; int main ( ) { int n[3],i,j,k = 2; for(i = 0;i<k;i++) n[i] = O; for(i = O;i<k;i++) { for(j = O;j<k;j++) n[j] = n[i] + 1; } cout<<n [0 ] <<end1; return 0; } 上述程序运行后,输出结果是( )。A.0B.1C.2D.3

考题 若有以下程序:include using namespace std;int main(){ int a[4] [4] = {{1,2,3,-4} 若有以下程序: #include <iostream> using namespace std; int main() { int a[4] [4] = {{1,2,3,-4},{0,-12,-13,14}, {-21,23,0,-24},{-31,32,-33,0}}; int i,j,s = 0; for(i=0;i<4;i++) { for(j=O;j<4;j++) { if(a[i] [j] >=0) continue; s+=a [i] [j]; } } cout<<s<<end1; return 0; } 执行后的输出结果是( )。A.-138B.141C.75D.-1

考题 若有以下程序:includeusing namespace std;int f(){ static int i=O; int s=1; s+=i; 若有以下程序: #include<iostream> using namespace std; int f() { static int i=O; int s=1; s+=i; i++; return s; } int main() { int i,a=0; for(i=0;i<5;i++) a+=f(); cout<<a<<endl; retrun 0; } 程序运行后,输出的结果是A.20B.24C.25D.15

考题 有以下程序:includeusing namespace Std;int main(){ int a = 15,b = 21,m = 0; swit 有以下程序: #include <iostream> using namespace Std; int main( ) { int a = 15,b = 21,m = 0; switch(a%3) { case 0: m++; break; case 1: m++; switch(b%2) {A.1B.2C.3D.4

考题 有以下程序:includevoid main(){int x=l0,y=l0:for(int i=0;x>8;y=++i)cout 有以下程序: #include<iostream.h> void main() { int x=l0,y=l0: for(int i=0;x>8;y=++i) cout<<x--<<","<<y<<",": } 该程序运行后的输出结果是( )。A.10,1,9,2B.9,8,7,6C.10,9,9,0D.10,10,9,1

考题 有以下程序: #includestdio.h main( ) {int a[5]={1,2,3,4,5),b[5]={0,2,1,3,o},i,s=0; for(i=o;i5;i++)s=s+a[b[i]]; printf(”%d\n”,s); } 程序运行后的输出结果是( )。A.6B.10C.11D.15

考题 有以下程序: include using namespace std; int main() {int x;for(int i=1;i 有以下程序: #include <iostream> using namespace std; int main() { int x; for(int i=1;i<=100;i++) { x=i; if (++x%2==0) if (++x%3==0) if (++x%7==0) cout<A.39,81B.42,84C.26,68D.28,70

考题 有以下程序 #includestdio.h int fun(char s[]) {int n=0; while(*s=9&&*s=0){n=10*n+*s-o;s++;) return(n); } main {char s[10]={6,1,*,4,*,9,*, 0,*); printf("%d",fun(s)); } 程序运行的结果是( )。A.9B.61490C.61D.5

考题 有以下程序 fun(char p[][10]) {int n=0,i; for(i=O;i<7;i++) if(p[i][O]=T)n++; return n; } main() {char str[][10]={"Mon","Tue","Wed","Thu","Fri", "Sat","Sun"}; printf("%d\n",fun(str)); }A.1B.2C.3D.0

考题 下列程序的输出结果是()。include main () {int a=3,b=2,c=1;if (a 下列程序的输出结果是( )。 #include <stdio.h> main () { int a=3,b=2,c=1; if (a<b) if (b<O) c=0 ; else c++; printf ("%d\n",c); }A.0B.2C.1D.3

考题 有以下程序: main() { int a=1,b=2,m=0,n=0,k; k=(n=b>a)||(m=a>b); printf("%d,%d\n"m,k,m); } 程序运行后的输出结果是( )。A.0,0B.O,1C.1,0D.1,1

考题 有以下程序: void swapl(int c0[], int c1[]) {int t; t=co[o]; co[o]=o1[o]; c1[o]=t; } void swap2(int * c0, int * c1) {int t; t=*c0; *c0=*c1; *c1=t; } main() {int a[2]={3, 5}, b[2]=A{3, 5); swapl(a, a+1); swap2(b [0], b[1]); printf("%d%d%d%d\n", a[0], a[1], b[0],b[1]); } 程序运行后的输出结果是______。A.3 5 5 3B.5 3 3 5C.3 5 3 5D.5 3 5 3

考题 有以下程序: main( ) {int X,i; for(i=1;i=50;i++) {x=i; if(X%2=O) if(x%3=O) if(X%7=0) printf("%d,i)"; } } 输出结果是( )。A.28B.27C.42D.41

考题 以下程序的输出结果是 main() { int b[3][3]={0,1,2,O,l,2,0,1,2},i,j,t=1; for(i=0;i<3;i++) for(j=i;j<=i;j++) t=t+b[i][b[j][j]]; printf("%d\n",t); }A.3B.4C.1D.9

考题 有以下程序 main() { int a[3][3],*p,i; p=a[0][0]; for(i=O;i<9;i++)p[i]=i; for(i=O;i<3;i++)printf("%d",a[1][i]); } 程序运行后的输出结果是______。A.0 1 2B.1 2 3C.2 3 4D.3 4 5

考题 有以下程序     main( )    {int a=O,b=O,C=0,d=0;      if(a=1)b=l;C=2;      else d=3:  printf(“%d,%d,%d,%d/n”,a,b,C,d);     }  程序执行后的输出结果是()A、0,O,O,3B、O,1,2,0C、1,1,2,0D、编译有错

考题 单选题有以下程序: #include main() {  chara[4][4]={''};  inti,j;  for(i=0;i4;i++)  {   a[i][0]=a[i][3]='#';   for(j=1;j3;j++)   {    a[0][j]=a[3][j]='#';    if((i!=0)(i!=3))a[i][j]='o';   }  }  for(i=1;i3;i++)  {   for(j=0;j4;j++)    printf("%2c",a[i][j]);   printf("");  } } 程序的运行结果是(  )。A # o o #换行 # o o #B # # # #换行 # o o #C # o o #换行 # # # #D # # # #换行 # # # #

考题 单选题有以下程序     main( )    {int a=O,b=O,C=0,d=0;      if(a=1)b=l;C=2;      else d=3:  printf(“%d,%d,%d,%d/n”,a,b,C,d);     }  程序执行后的输出结果是()A 0,O,O,3B O,1,2,0C 1,1,2,0D 编译有错