阅读下面的程序,分析代码是否能够编译通过,如果能编译通过,请列出运行的结果。否则请说明编译失败的原因。 class Test{ int a = 10; public static void main(String[] args){ int a= 20; System.out.println("a = "+ a); } }
举一反三
- 阅读下面的程序,分析代码是否能够编译通过,如果能编译通过,请列出运行的结果,否则请说明编译失败的原因。Class Demo{ public static void main(String args){ if(true){ int x = 0 ; x ++ ; } System.out.println(x); }}
- 阅读下面的程序, 分析代码是否能够编译通过,如果能编译通过,请列出运行的结果。 否则请说明编译失败的原因。class A {private int secret = 5;}public class Test1 {public static void main(String[] args) {A a = new A();System.out.println(a.secret++);}}
- 阅读下面的程序, 分析代码是否能够编译通过,如果能编译通过,请列出运行的结果。 否则请说明编译失败的原因。public class Test2 {int x = 50;static int y =200 ;public static void method() {System.out.println(x+y);}public static void main(String[] args) {Test2.method();}}
- 阅读下面的程序,分析代码是否能够编译通过,如果能编译通过,请列出运行的结果。否则请说明编译失败的原因。public class Test04 {public static void main(String args[]) {int n = 9;while (n >; 6) {System.out.println(n);n--;}}}
- 56.请阅读下面的程序,分析代码是否能够编译通过,如果能编译通过,请列出运行的结果,否则请说明编译失败的原因。 Public class DoWhileDemo1 { public static void main(String[] args) { int n = 1; int m = 5; do { System.out.println(n); n++; } while (n == m); } }