1;4;7;2;5;8;3;6;9
1;2;3;4;5;6;7;8;9
9;6;3;8;5;2;7;4;1
7;8;9;4;5;6;1;2;3
第1题:
阅读下列程序。
Option Base 1
Private Sub Form. Click()
Dim x(3,3)
For j=l to 3
For k=l to 3
If j=k then x(j,k)=l
If j<>k then x(j,k)=k
Next k
Next j
Call fun(x())
End Sub
Private Sub fun(x() )
For j=1 to 3
For k=1 to 3
Print x(j,k);
Next k
Next j
End Sub
运行程序时,输出结果为【 】
第2题:
下面程序输出的是( )。 main { int t=l;fun(fun(t));} fun(int h) { static int a[3]={1.2.3}; int k; for(k=0;k<3;k++)a[k]+=a[k]-h; for(k=0;k<3;k++)printf("%d",a[k]); printf("\n"); return(a[h]);}
A.1,2,3, 1,5,9,
B.1,3,5, 1,3,j,
C.1,3,5, 0,4,8,
D.1,3。5, -1,3,7,
第3题:
有以下程序:void main(){ int k=10,n=0; for(;n<k;) { //n++; if(n++%3!=0)continue; k--; } printf("%d,%d\n",k,n);}程序运行后的输出结果是( )。A.7,7 B.6,6 C.3,3 D.4,4
第4题:
在AutoCAD中,相对于点(1,3),点(3,3)的相对极坐标表示为()
A.@3<0
B.@
C.@2<0
D.@2<180
第5题:
有以下程序: #include <stdio.h> main() { int k=4,n=0; for( ;n<k;) { n++; if(n%3! =0) continue; k--;} printf("%d,%d\n",k,n); } 程序运行后的输出结果是( )。
A.1,1
B.2,2
C.3,3
D.4,4
第6题:
有以下程序
main( )
{ int k=4,n=0;
for( ; n<k ; )
{ n++;
if(n%3!=0) continue;
k--; }
printf("%d,%d\n",k,n);
}
程序运行后的输出结果是
A.1,1
B.2,2
C.3,3
D.4,4
第7题:
3下面程序的运行结果是( )。
Option Base 1
Private Sub Commandl_Crick()
Dimx,y(3,3)
x=Array(1,2,3,4,5,6,7,8,9)
Fori=1 To 3
Forj=1 To 3
y(i,j)=(i*j)
If(j>=i)Then Printy(i,j);
Nextj
Nexti
End Sub
A.
B.
C.
D.
第8题:
有如下程序:
Private Sub Command1_Click()
Dim k As Integer, m As Integer
Dim p As Integer
k=4: m=1
p=PC(k, m) : Print p;
p=PC(k, m) : Print p
End Sub
Private Function PC(a As Integer, b As Integer)
Static m As Integer, i As Integer
m=0: i=2
i=i + m + 1
m=i + a + b
PC=m
End Function
程序运行后,输出的结果为( )。
A.4 6
B.6 6
C.8 8
D.10 12
第9题:
下列程序的输出结果是( )。 #include<iostream> using namespace std; int main(){ int x[6]={1,3,5,7,9,11},*k,**s; k=x; s=&k; cout<< *(k++) <<"," << **s<<endl; return 0; }
A.3,3
B.1,1
C.3,5
D.1,3
第10题:
A.13
B.16
C.17
D.45