4、-4
3、-4
3、3
3、-3
第1题:
int a=3,b=4;条件表达式m=(a
第2题:
下列逻辑表达式中值为False的是()
第3题:
Int(3.45)和Int(-3.45)的值分别是()。
第4题:
现有: class TestFoo f int x; String y; int getX() { return x; } String getY() {return y; } void setX (int x) { int Z=7: this.x=x; } 可以添加多少个修饰符来封装此类?()
第5题:
下列的数组定义语句,不正确的是()。
第6题:
以下的数组定义语句中,不正确的是()
第7题:
以下程序的输出结果是( ). main( ) {float x=3.6; int i; i=(int)x; printf("x=%f,i=%d/n",x,i); }
第8题:
函数Ceiling(3.45)的返回值是()。
第9题:
VB函数中,INT(3.8)的值为()。
第10题:
3
4
3.4
3.45
第11题:
-5
-3
-6
-4
第12题:
4、-4
3、-4
3、3
3、-3
第13题:
有函数int max(int x,int y){float z=2.5; return(z);则返回值是()
第14题:
下列数组初始化正确的是:()
第15题:
有以下程序 void f(int x,int y) { int t; if(x < y) { t=x; x=y; y=t; } } main() { int a=4,b=3,c=5; f(a,b); f(a,c); f(b,c); printf("%d,%d,%d/n",a,b,c); } 执行后输出结果是()
第16题:
在VB中,函数 INT(-3.6)的值是()。
第17题:
下列语句中,不能正确定义长度为4的数组a的语句是()
第18题:
执行下面语句序列后,a和b的值分别为() int a=5,b=3,t; int &ra=a; int &rb=b; t=ra;ra=rb;rb=t。
第19题:
下列语句的结果是(). main() { int j; j=3; printf("%d,",++j); printf("%d",j++); }
第20题:
请问Int(3.45)和Int(-3.45)的返回值是什么?()
第21题:
int[] a=new int[]{1,2,3,4};
int[] a= {1,2,3,4};
int[] a=new int[4]{1,2,3};
int[] a=new int[4]{1,2,3,4};
第22题:
2 0 4
2 0 0
2 4 0
2 4 6
第23题:
int[] a=new int[5]{1,2,3,4,5};
int[,] a=new int[3][4];
int[][] a=new int[3][];
int[] a={1,2,3,4,5};
第24题:
4、-4
3、-4
3、3
3、-3