下述程序段的执行结果是( )。 #include <stdio.h> Void main() { int x; for(x=1;x<=100;x++) if(++x%3==0) if(++x%4==0) if(++x%7==0) printf("%d",x); }
A.75
B.76
C.77
D.84
第1题:
下列程序段的输出结果是 #include<iostream.h> void fun(int * x,int * y) { cout << * X << * y; *X=3; *y=4; } void main() { int x=1,y=2; fun(&y,&x); cout << X << y<<endl; {
A.2143
B.1212
C.1234
D.2112
第2题:
下列程序段的输出结果是 #include<iostream.h> void fun(int*x,int*y) {cout<<*x<<*y; *X=3; *y=4; } void main() {int x=1,y=2; fun(&y,&x); cout<<X<<y<<endl; }
A.2143
B.1212
C.1234
D.2112
第3题:
【单选题】执行以下程序后,输出的结果是______。 include "stdio.h" main() { int w=4,x=3,y=2,z=1; printf("%dn",(w<x?w:z<y?z:x)); }
A.4
B.2
C.1
D.3
第4题:
有以下程序:#inelude <stdio.h>main( ){ int i,j,x=0; for(i=0;i<2;i++ ) { x++; for(j=0;j<=3;j ++) { fi(j%2) continue; x++; x++; } pfinff( "x = % d\n",x);} 程序执行后的输出结果是( )。
A.x=4
B.x=8
C.x=6
D.x=12
第5题:
下述程序段的执行结果是 ( ) #include<stdio.h> void main() { int x; for(x=1; x<=100; x++) if(++x%3==0) if(++x%4==0) if(++x%7==0) printf("%d",x); }
A.75
B.76
C.77
D.84