• 2021-04-14
    以下程序的输出结果为?public class Test {public static void main(String args[]) {for ( int k = 0; k < 3; k++)System.out.print("k");}}
  • kkk

    内容

    • 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&#91;&#93; 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&#91;&#93; 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&#91;&#93; args) { int a = 4,b = 9,k = 0; while((a++) A: 4 B: 1 C: 2 D: 3