题目内容

阅读以下代码,选择正确的输出结果( )。public class TestDemo1 {public static void main(String[] args) {int m = 3, n = 6, k = 0;while ((m++) <= (--n))++k;System.out.println(k);}}

A. 0
B. 1
C. 2
D. 3

查看答案
更多问题

下面程序输出的结果是( )。public class TestDemo2 {public static void main(String[] args) {int a, b;for (a = 1, b = 1; a <= 100; a++) {if (b >= 10)break;if (b % 3 == 1) {b += 3;continue;}}System.out.println(a);}}

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

结构,即算法中有一组操作要求反复被执行。

在一个for循环的循环体中包含另一个for循环,实现for循环的。

do-while循环首先再,而while循环首先再。

答案查题题库