网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
执行完下面的语句后,欲删除整个数组,最适当的方法是() float *pointer=new float[10];
A.delete * pointer;
B.delete[ ] pointer;
C.delete pointer [ ];
D.delete & pointer;
参考答案和解析
ALTER 表名 DROP COLUMN 列名
更多 “执行完下面的语句后,欲删除整个数组,最适当的方法是() float *pointer=new float[10];A.delete * pointer;B.delete[ ] pointer;C.delete pointer [ ];D.delete pointer;” 相关考题
考题
已知:char a;int b;float c;double d;执行语句“c=a+b+c+d;”后,变量c的数据类型是( )。A.int B.char C.float D.double
考题
下列二维数组初始化语句中,正确且与语句float a[][3]={0,3,8,0,9};等价的是A.float a[2][]={{0,3,8},{0,9}};B.float a[][3]={0,3,8,0,9,0};C.float a[][3]={{0,3},{8,0},{9,0}};D.float a[2][]={{0,3,8},{0,9,0}};
考题
请选出创建数组的正确语句。()
A.float f[][] = new float[6][6];B.float []f[] = new float[6][6];C.float f[][] = new float[][6];D.float [][]f = new float[6][6];
考题
设整型变量 a=2,则执行下列语句后,浮点型变量b的值不为 0.5的是( )。
A. b= 1.0/aB. b=(float)(1/a)C. b=1/(float)aD. b=1/(a* 1.0)
考题
以下对一维实型数组a的正确定义的是______。A.float a(10);B.int n=10;float a[n];C.int n;float a [n]; scanf("%d",n);D.#define SIZE 10 float a[SIZE];
考题
设执行下面的赋值语句: A=Float.valueOf("12.34").floatValue(); 后,a的值是( )。A.a="12.34"B.a=12.34C.a=1234D.a=12
考题
以下各组选项中,均能正确定义二维实型数组a的选项是( )A.float a[3][4]; float a[][4]; float a[3][]={{1},{0}};B.float a(3,4); float a[3][4]; float a[][]={{0},{0}};C.float a[3][4] static float a[][4]={{0},{0}};D.float a[3][4]; float a[3][];
考题
类Teacher: class Teacher{ String name; float salary; Teacher(String name){ this.name = name; } Teacher(String name,float salary){ this.name = name; this.salary = salary; } } 执行语句Teacher t = new Teacher(“Tom”,2000.0f);后,字段salary的值是哪一项?() A、 2000.0fB、 0.0fC、 null;D、 2000
考题
float f[][][] = new float[3][][]; float f0 = 1.0f; float[][] farray = new float[1][1]; What is valid?() A、 f[0] = f0;B、 f[0] = farray;C、 f[0] = farray[0];D、 f[0] = farray[0][0];
考题
下列语句中,可以创建数组实例的有()。A、int[] ia = new int [15];B、float fa = new float [20];C、char*+ ca =“Some String”;D、Object oa = new float[20];E、Int ia [][] =(4,5,6)(1,2,3)
考题
哪个语句创建了一个数组实例?()A、int[] ia= new int [15];B、float fa= new float [20];C、char[] ca= “Some String”;D、int ia [][]= {4,5,6} {1,2,3};
考题
下面的方法重载,正确的是()。A、int fun(int a, float b) { } float fun(int a, float b) { }B、float fun(int a, float b) { } float fun(int x, float y) { }C、float fun(float a) { } float fun(float a, float b) { }D、float fun1(int a, float b) { } float fun2(int a, float b) { }
考题
Which two cause a compiler error?() A、 float[] = new float(3);B、 float f2[] = new float[];C、 float[] f1 = new float[3];D、 float f3[] = new float[3];E、 float f5[] = { 1.0f, 2.0f, 2.0f };F、 float f4[] = new float[] { 1.0f. 2.0f. 3.0f};
考题
多选题下列语句中,可以创建数组实例的有()。Aint[] ia = new int [15];Bfloat fa = new float [20];Cchar*+ ca =“Some String”;DObject oa = new float[20];EInt ia [][] =(4,5,6)(1,2,3)
考题
单选题类Teacher: class Teacher{ String name; float salary; Teacher(String name){ this.name = name; } Teacher(String name,float salary){ this.name = name; this.salary = salary; } } 执行语句Teacher t = new Teacher(“Tom”,2000.0f);后,字段salary的值是哪一项?()A
2000.0fB
0.0fC
null;D
2000
考题
多选题Which two cause a compiler error?()Afloat[] = new float(3);Bfloat f2[] = new float[];Cfloat[] f1 = new float[3];Dfloat f3[] = new float[3];Efloat f5[] = { 1.0f, 2.0f, 2.0f };Ffloat f4[] = new float[] { 1.0f. 2.0f. 3.0f};
考题
单选题哪个语句创建了一个数组实例?()A
int[] ia= new int [15];B
float fa= new float [20];C
char[] ca= “Some String”;D
int ia [][]= {4,5,6} {1,2,3};
考题
单选题下面的方法重载,正确的是()。A
int fun(int a, float b) { } float fun(int a, float b) { }B
float fun(int a, float b) { } float fun(int x, float y) { }C
float fun(float a) { } float fun(float a, float b) { }D
float fun1(int a, float b) { } float fun2(int a, float b) { }
热门标签
最新试卷