public class TestDoWhile { /**do while 至少执行一次 先斩后奏
* 测试dowhile
*/
public static void main(String[] args) {
int a=0;
while(a<0){
System.out.println("ok");
a++;
}
do{
System.out.println(a);
}while(a<0);
} }
public class TestDoWhile { /**do while 至少执行一次 先斩后奏
* 测试dowhile
*/
public static void main(String[] args) {
int a=0;
while(a<0){
System.out.println("ok");
a++;
}
do{
System.out.println(a);
}while(a<0);
} }