WeChatf983

Java流程控制12:打印三角形及Debug

Java流程控制12:打印三角形及Debug

package com.pzz.structure;

public class TestDemo {
    public static void main(String[] args) {
        //打印三角形  5行
        for (int i = 1; i <= 5; i++) {
            for (int j = 5; j >=i ; j--) {
                System.out.print(" ");
            }
            for (int j = 1; j <=i ; j++) {
                System.out.print("*");
            }
            for (int j = 1; j < i ; j++) {
                System.out.print("*");
            }
            System.out.println();
        }
    }
}

Debug用来查看代码运行的每一步,帮助理解

posted on 2021-08-05 21:01  胖子_Blog  阅读(21)  评论(0编辑  收藏  举报

导航