以下代码的输出结果是()。(单选题)publicclassTest{publicstaticvoidmain(String[]args){double[]price=newdouble[5];price[0]=98.10;price[1]=32.18;price[2]=77.75;for(inti=0;i<;=price.length;i++){System.out.print((int)price[i]+“”);}}}[/i]
A: 98 32 77 0 0
B: 98 32 78 0 0
C: 98 32 78
D: 编译出错
A: 98 32 77 0 0
B: 98 32 78 0 0
C: 98 32 78
D: 编译出错
举一反三
- 以下代码的输出结果是()。(单选题)publicclassTest{publicstaticvoidmain(String[]args){double[]price=newdouble[5];price[0]=98.10;price[1]=32.18;price[2]=77.75;System.out.print((int)price[0]+""+(int)price[1]+""+(int)price[2]+""+(int)price[3]+""+(int)price[4]);}} A: 98 32 77 0 0 B: 98 32 78 0 0 C: 98 32 78 D: 编译出错
- 以下代码的输出结果是()。publicclassTest{publicstaticvoidmain(String[]args){double[]price=newdouble[5];price[0]=98.10;price[1]=32.18;price[2]=77.75;System.out.print((int)price[0]+""+(int)price[1]+""+(int)price[2]+""+(int)price[3]+""+(int)price[4]);}}
- 下面代码的输出是什么? int [][] array = {{1, 2},{3, 4},{5,6}}; int sum = 0; for(int i = 0; i < array.length; i++) sum = sum + array[i][0]; System.out.println(sum);[/i]
- 以下程序的输出结果是: ls=[[1,2], 'python', [[3,4,'A'],5],[0,7]] print(ls[2][1]) A: 'A' B: p C: 3 D: 5
- 下面代码的输出结果是( )。 a=[[1,2,3],[4,5,6],[7,8,9]] s=0 for i in range(2): for j in range(3): s+=a[i][j] print(s)[/i] A: 15 B: 6 C: 45 D: 21