举一反三
- 以下程序的输出结果为?public class Test { public static void main(String args[]) { for ( int k = 0; k < 3; k++) System.out.print("k"); } } A: 0123 B: kkk C: 012 D: k
- 以下程序的输出结果为? public class Test { public static void main(String args[]) { for ( int k = 0; k < 3; k++) System.out.print(k); } } A: 123 B: 012 C: 0123 D: kkk
- public class test { public static void main(String args[]) { int m=0; for ( int k=0;k<2;k++) method(m++); System.out.println(m); } public static void method(int m) { System.out.print(m); } }
- 以下程序的输出结果为? public class Test { public static void main(String args[]) { for ( int k = 0; k < 3; k++) System.out.print(k); } } A: 123 B: 012 C: 0123 D: kkk
- 执行以下程序后,输出结果为 public class Test{ public static void main(String args[]) { int k ,f=1; for (k=2;k<5;k++) f = f * k; System.out.println(f); } }
内容
- 0
以下程序的运行结果为? class Test2{ public static void main(String[] args) { int[] seeds = {1,2,3,5}; int n = seeds.length; for (int i = 0; i < 2; i++) for (int k = 0; k< n-1; k++) seeds[k]= seeds[k+1]; for (int i = 0; i 输出: 3 5 5 5
- 1
以下程序的运行结果为( ) public class Ex6 { public static void main(String[] args) { int i,j,k; for(i=0;i<3;i++){ for(j=1;j<4;j++){ for(k=2;k<5;k++){ if((i==j)&&(j==k)) System.out.println(i); } } } } }
- 2
指出并修改下面程序的错误之处。 public class Test{ public static void main(String[] args){ int i = k + 50; System.out.println(k); } }
- 3
下列代码中,将引起一个编译错误的行是______。 1)public class Test{ 2) int m,n; 3) public Test(){} 4) public Test(int a){m=a;} 5) public static void main(String args[]){ 6) Test t1,t2; 7) int j,k; 8) j=0;k=0; 9) t1=new Test(); 10) t2=new Test(j,k); 11) } 12) }
- 4
public class Test { public static void main(String[] args) { int a = 4,b = 9,k = 0; while((a++) A: 4 B: 1 C: 2 D: 3