1. ผลลัพธ์ของโปรแกรม x มีกี่บรรทัด class x { public static void main(String args[]) { for (int i=1; i<5; i++) { System.out.print(i + i); } } } |
2. ผลลัพธ์ของโปรแกรม x มีกี่บรรทัด class x { public static void main(String args[]) { for (int i=1; i<=5; i++) { System.out.println(i); } } } |
3. ผลลัพธ์ของโปรแกรม x มีกี่บรรทัด class x { public static void main(String args[]) { for (int i=5; i<1; i++) { System.out.println(i); } } } |
4. ผลลัพธ์ของโปรแกรม x มีกี่บรรทัด class x { public static void main(String args[]) { for (int i=2; i<2; i++) { System.out.println(i); } } } |
5. ผลลัพธ์ของโปรแกรม x มีกี่บรรทัด class x { public static void main(String args[]) { for (int i=1; i<=5; i++) { System.out.println("."); } } } |
6. ผลลัพธ์ของโปรแกรม x มีกี่บรรทัด class x { public static void main(String args[]) { for (int i=1; i<=5; i++) { System.out.println(a); } } } |
7. ผลลัพธ์ของโปรแกรม x มีกี่บรรทัด class x { public static void main(String args[]) { for (int i=0; i<5; i++) { System.out.print(i); } } } |
8. ผลลัพธ์ของโปรแกรม x มีกี่บรรทัด class x { public static void main(String args[]) { for (int i=1; i<5; i++) { System.out.print(i + i); } } |
9. ผลลัพธ์ของโปรแกรม x มีกี่บรรทัด class x { public static void main(String args[]) { for (int i=1; i>5; i++) { System.out.print(i + i); } } } |
10. ผลลัพธ์ของโปรแกรม x มีกี่บรรทัด class x { public static void main(String args[]) { for (int i=0; i<5; i++) { System.out.println(i + i); } } } |