while循环语句格式
while(判断条件语句) {
循环体语句;
}
扩展格式
初始化语句;
while(判断条件语句) {
循环体语句;
控制条件语句;
}
执行流程图
package com.itheima_05;
/*
* while循环的语句格式:
* while(判断条件语句) {
* 循环体语句;
* }
* 扩展格式:
* 初始化语句;
* while(判断条件语句) {
* 循环体语句;
* 控制条件语句;
* }
*
* 回顾for循环格式:
* for(初始化语句;判断条件语句;控制条件语句) {
* 循环体语句;
* }
*/
public class WhileDemo {
public static void main(String[] args) {
// 在控制台输出10此HelloWorld
// for循环实现
/*
for (int x = 1; x <= 10; x++) {
System.out.println("HelloWorld");
}
*/
//用while循环改写
int x = 1;
while(x <= 10) {
System.out.println("HelloWorld");
x++;
}
}
}