jave--do while
do { //代码语句 }while(布尔表达式);
布尔表达式在循环体的后面,所以语句块在检测布尔表达式之前已经执行了。 如果布尔表达式的值为 true,则语句块一直执行,直到布尔表达式的值为 false。
package hello.demo;
public class hello2 {
public static void main(String[] args){
int x = 20;
do {
System.out.println("value of x is "+x);
x++;
}while (x<50);
}
}