-1

你能解释一下吗?我查看了这个网站的数据

http://www.d.umn.edu/~gshute/java/statements.html

while (boolean-expression) {
    nested-statements
}

谢谢

4

1 回答 1

0

“布尔表达式”是返回布尔值(truefalse)的表达式。术语“嵌套语句”是指 while 循环内的语句。

例如:

int x = 10;
while (x > 0) { // x > 0 is an expression with a boolean result
   System.out.println(x); // nested statement 1
   x--;                   // nested statement 2
}

(这将打印 10, 9 .. 1 到控制台)。

于 2012-08-22T23:16:00.267 回答