顺序结构的程序语句只能被执行一次
如果你想要同样的操作执行多次,就需要使用循环结构.

java 中有三种主要的循环结构:

while 循环

  1. while(布尔表达式){ 循环内容}
  2. 只要布尔表达式为true,循环就会一致执行下去
  1. public class VariableDemo01{
  2. public static void main(String[] args){
  3. int x =10;
  4. while(x<20){
  5. x++;
  6. System.out.println(x);
  7. }
  8. }
  9. }

do…while 循环

for 循环