为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

2 回答

public class HelloWorld {
 public static void main(String[] args) {
       
 System.out.println("打印直角三角形");
 int i,j;
        i=1;
        while (i<=3) {
        j=1;
            while (j<=i) {
                System.out.print("*");
                j++;
                }

            System.out.print("\n");
            i++;
        }
    }
}

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

哪位大佬用了while语句写的啊

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信