java基础学习:do-while循环

1.

 

package com.itheima.loop;

public class Dowhile1 {
    public static void main(String[] args) {
        int i=0;
        do{
            System.out.println("1");
            i++;
        }while (i<3);
    }
}

 

posted @ 2023-11-29 16:49  小彭先森  阅读(4)  评论(0编辑  收藏  举报