- package com.db1;
- public class WhileDemo {
- public static void main(String[] args) {
- //while 判断条件可能一次也不执行
- int x=1;
-
- while(x<3);
- {
- System.out.println("x="+x);
- x++;
- }
-
- //do while 最少执行一次
- int y=1;
-
- do{
- System.out.println("do:y="+y);
- y++;
- }while(y<3);
- }
- }
复制代码
|
|