【单选题】
有定义语句“int a[][3]={1, 2, 3, 4, 5, 6};”,则a[1][0]的值是____。
【单选题】
运行下面程序时,会产生什么异常?( ) public class X7_1_5 {
public static void main(String[] args) {
int[] z = {
1,2,3,4
}
; int p = z[4]; int x = 0; int y = 5/x;
}
}
③
ArrayIndexOutOfBoundsException
【单选题】
运行下面程序时,会产生什么异常?( ) public class X7_1_4 {
public static void main(String[] args) {
int x = 0; int y = 5/x; int[] z = {
1,2,3,4
}
; int p = z[4];
}
}
③
ArrayIndexOutOfBoundsException
【单选题】
以下程序段运行后s的值是()。 int a[3][3]={1, 2, 3, 4, 5, 1, 2, 3, 4} ; int i, j, s=1; for(i=0; i for(j=i+1; j s+=a[i][j];
【单选题】
以下程序的运行结果是( )。 void fun(int array[3][3]) { int j; for(j=0;jj++) array[1][j]=array[1][j]++; printf(\n} void main(){ int j,a[3][3]={0,1,2,1,0,4,2,4,5};fun(a);for(j=0;jj++)printf(%d,a[1][j]); printf(\n }
【单选题】
若有定义:int a[][3]={1,2,3,4,5,6,7,8};,则a数组的行数为()
【单选题】
若有以下定义,则数组元素a[3]的值是()。int a[5]={1,2,3}
【单选题】
给出下面代码段, 哪行将引起一个编译时错误?( )
1) public class Test {
2) int n = 0;
3) int m = 0;
4) public Test(int a) { m=a; }
5) public static void main(String arg[]) {
6) Test t1,t2;
7) int j,k;
8) j=3; k=5;
9) t1=new Test();
10) t2=new Test(k);
11) }
12) }
【单选题】
若定义数组并初始化,运行的结果是() void main( ) { int i,j,a[2][3]={{1,2,3},{4,5,6}}; for(i=0;i for(j=0;j printf(%d,a[i][j]); }
【单选题】
有以下程序,程序执行后的输出结果是( ) #include int fun(int x [ ],int n) { static int sum=0,i; for(i=0; i{ sum+=x[i]; } return sum; } void main( ) { int a[ ]={1,2,3,4,5}; int b[ ]={6,7,8,9},s=0; s=fun(a,5)+fun(b,4); printf(%d\n,s); }
【单选题】
下面代码:int a[5];int *p;a[0]=1;a[1]=2;p=a;*p的值