✈【【零基础 快速学Java】韩顺平 零基础30天学会Java】
循环变量初始化;
while(循环条件){
循环体(语句);
循环变量迭代;
}
举个栗子
/**
* ClassName: While01
* date: 2022/8/31 14:21
*
* @author DingJiaxiong
*/
public class While01 {
public static void main(String[] args) {
int i = 1;
while (i <= 10){
System.out.println("韩顺平老师666 " + i);
i ++;
}
System.out.println("退出while");
}
}
运行结果
循环变量初始化;
do{
循环体(语句);
循环变量迭代;
}while(循环条件);
举个栗子
统计 1—200 之间能被 5 整除但不能被 3 整除的 个数
/**
* ClassName: DoWhileExercise01
* date: 2022/8/31 14:31
*
* @author DingJiaxiong
*/
public class DoWhileExercise01 {
public static void main(String[] args) {
int i = 1;
int count = 0;
do {
if (i % 5 == 0 && i % 3 != 0){
System.out.println("i=" + i);
count ++;
}
i ++;
}while (i <= 200);
System.out.println("count = " + count);
}
}
运行结果