题目内容

请阅读下面的程序。Class WhileDemo5 {public static void main(String[] args) {int n = 5;while (n < 10) {System.out.print(n);n++;}}}下列选项中,哪一个是程序运行的结果:

A. 无输出
B. 输出56789
C. 死循环
D. 编译错误

查看答案
更多问题

请阅读下面的程序public class Example {public static void main(String[] args) {int x = 1;do {x++;} while (x <= 4);System.out.println("x = " + x);}}程序的运行结果是:

A. 3
B. 4
C. 5
D. 6

请阅读下面的程序public class Test {public static void main(String[] args) {int a[] = {2,0,4,1,8,3,5};int temp;for (int i = 0; i < a.length - 1; i++) {for (int j = a.length - 1; j > i; j--) {if (a[j] < a[j - 1]) {temp = a[j];a[j] = a[j - 1];a[j - 1] = temp;}}}for (Integer i : a) {System.out.println(i);}}}下列选项中,哪一个是程序的运行结果:

A. 8,5,4,3,2,1,0
B. 5,3,8,1,4,0,2
C. 2,0,4,1,8,3,5
D. 0,1,2,3,4,5,8

请阅读下面的程序public class Test {public static void main(String[] args) {int temp = 0;for (int i = 1; i < 5; i++) {for (int j = 0; j < i; j++) {temp++;}}System.out.println(temp);}}下列选项中,哪个是程序的运行结果:

A. 5
B. 9
C. 10
D. 15

请阅读下面的程序public class Test {public static void main(String[] args) {int temp = 0;for (int i = 1; i < 5; i++) {for (int j = 0; j < i; j++) {temp++;}}System.out.println(temp);}}下列选项中,哪一个是正确的运行结果:

A. 5
B. 9
C. 10
D. 15

答案查题题库