阅读以下代码,选择正确的输出结果( )。public class TestDemo1 {public static void main(String[] args) {int m = 3, n = 6, k = 0;while ((m++) <= (--n))++k;System.out.println(k);}}
查看答案
下面程序输出的结果是( )。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循环首先再。