以下代码的调试结果为?以下程序的运行结果为 public class test { public static void main(String args[]) { int i = 1; do { i--; } while (i > 2); System.out.println(i); } }
举一反三
- 以下程序调试结果 public class test { public static void main(String args[]) { int i=1, j=3; while (j>0) { j--; i++; } System.out.println(i); } }
- 中国大学MOOC: 以下程序的运行结果为( )。public class Test { public static void main(String args[ ]) { int i=0, j=2; do { ++i; j--; } while(j>0); System.out.println(i); }}
- 以下程序的运行结果为( )。public class Test { public static void main(String args[ ]) { int i=0, j=2; do { i=++i; j--; } while(j>0); System.out.println(i); }} A: 0 B: 1 C: 2 D: 3
- 以下程序调试结果 public class test { public static void main(String args[]) { int i=1, j=3; while (j>0) { j--; i++; } System.out.println(i); }} A: 4 B: 2 C: 3 D: 0
- 下列代码的执行结果是 。public class Test {public int aMethod(){static int i=0;i++;System.out.println(i);}public static void main(String args[ ]){Test test = new Test();test.aMethod();}}