1.1 语法
初始化
do {
循环体
条件变化控制
} while(循环条件);
int i = 0;
do {
sout(i);
i++;
} while(i <= 5);
do-while循环第一次执行的时候会直接执行循环体,不用像while循环先执行判定
do-while执行的次数是1~N次
适用于至少执行一次的循环场景
1.2 do-while案例
package com.shine.while0;
import java.util.Scanner;
public class Demo03 {
public static void main(String[] args) {
/**
* 模拟考试输入成绩,如果成绩达标,结束循环,否则继续考试。。。
*/
// 创建扫描器
Scanner sc = new Scanner(System.in);
int score;
do {
// 提示输入并获取考试成绩
System.out.println("请输入你的考试成绩:");
score = sc.nextInt();
} while(score < 60); // 如果成绩小于60分,视为不及格,继续输入成绩
System.out.println("OVER");
}
}