Java 列印金字塔 or 列印帶數位金字塔 (Java 學習中的小記錄)

來源:互聯網
上載者:User

標籤:system   技術   images   src   []   out   color   public   效果   

Java 列印金字塔 or 列印帶數位金字塔 (Java 學習中的小記錄) 王可利(Star·星星)

 

 

代碼如下:

 1 class Star8  2 { 3     public static void main(String[] args)  4     { 5         /*                        空格 6               *        1   2*i-1   3   4-1 4-i 7              ***       3           2   4-2 8             *****      5           1   4-3  9            *******     7           0   4-410         */11         //第一層迴圈控制的是行數12         for(int i = 1;i<=5;i++){13         14             //列印空格數15 16             for(int j=5;j>i;j--){17                 18                 System.out.print(" ");19             }20 21             //列印*號數22             for(int j =1;j<=2*i-1;j++){23                 System.out.print("*");24             }25 26             //換行27             System.out.println();28         }30     }31 }

 

 

代碼如下:

 1 class Star8  2 { 3     public static void main(String[] args)  4     { 5         /*             6                      1            i= 1   0 7                     12  1         i= 2   1 8                    123  21        i= 3   2 9                   1234  321       i= 4   310                  12345  432111                 123456  5432112         */13         //控制行數14         for(int i = 1 ; i<=6 ;i++){15 16             //列印空格的17             for(int j= 1; j<=6-i;j++){18                 19                 System.out.print(" ");20             }21         22             //列印數字  :前面數位規律23             for(int j=1;j<=i;j++){24             25                 System.out.print(j);26             }27 28             //後面數位規律29             for(int j=i-1;j>=1;j--){30             31                 System.out.print(j);32             }33     34                System.out.println();35         }36     }37 }

 

Java 列印金字塔 or 列印帶數位金字塔 (Java 學習中的小記錄)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.