• 2022-07-01
    int x1=new Integer(5); int x2=new Integer(6); int x3 = x1+x2; x3的值为( )
  • 11

    内容

    • 0

      数组x定义如下: int x[]=new int[3]; 则x.length的值为【1】。

    • 1

      下列程序的输出结果是( ) int x1=30,x2=40; void sub(int x,int y) { x1=x;x=y;y=x1;} int main() { int x3=10,x4=20; sub(x3,x4); sub(x2,x1); printf(“%d,%d,%d,%d”,x3,x4,x1,x2); return 0; }

    • 2

      我们会把________称为“x是含6个元素的整型数组”。 A: int x[6]; B: int x[2][3]; C: int x[6][1]; D: int x[1][6];

    • 3

      下列关于数组声明、初始话的语句,错误的是: A: int x[];x=new int[4]; B: int x[2]={1,2}; C: float y[][]=new float[2][3]; D: float[][] y=new float[2][];y[0]=new float[3];y[1]=new float[2];

    • 4

      int x = 6;int a = 0;a = x >> 2;指令执行后a的值为( )。 A: 3 B: 1 C: 2 D: 0