ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
>[success] # do while -- 循环 * 先执行 `循环体` 在执行循环条件,即`do-while`循环主要用于至少执行一次循环体,注意`do while 后面有分号` ~~~ do { 循环体; } while(条件表达式); ~~~ >[danger] ##### 案例 ~~~ import java.util.Scanner; public class DoWhileTest { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int res = 0; do { res = res * 10 + n % 10; // 3 32 321 n /= 10; // 12 1 0 } while (n > 0); System.out.println(n + "逆序后的结果是:" + res); } } ~~~