package com.lyc.struct;

public class DoWhileDemo02 {
public static void main(String[] args) {
int a = 0;
while (a<0){
System.out.println(a);
a++;
}

System.out.println("=====================");

do {
System.out.println(a);
a++;
}while (a<0);

}
}
//无论条件成不成立 do while 都会先执行一次
//while先判断后执行。
//dowhile是先执行后判断!

/*
运行结果:

=====================
0

*/
posted on 2021-01-06 20:11  liuyunche  阅读(87)  评论(0编辑  收藏  举报