题目内容

下面程序输出的结果是( )。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循环首先再。

下面程序是计算5的阶乘,请在横线处填空,使用程序功能完整。public class Factorial{public static void main(String[] args) {int n=5;long result=1;do { ;;}System.out.println("5的阶乘为: "+result);}}

答案查题题库