码迷,mamicode.com
首页 > 其他好文 > 详细

for循环语句输出菱形

时间:2015-10-04 20:54:03      阅读:659      评论:0      收藏:0      [点我收藏+]

标签:

 1         for(int a = 5; a > 0 ; a--)
 2         {
 3             for(int b = 1; b <= a; b++)
 4              {
 5                 System.out.print(" ");
 6              }
 7             for(int c = 5; c >= a; c--)
 8             {
 9                 System.out.print("B");
10             }
11             System.out.println("");
12         }
13 
14         for(int a = 4; a > 0 ; a--)
15         {
16             for(int d = 1; d > 0; d--)
17             {
18                 System.out.print(" ");
19             }
20             for(int b = 4; b >= a; b--)
21              {
22                 System.out.print(" ");
23              }
24             for(int c = 1; c <= a; c++)
25             {
26                 System.out.print("B");
27             }
28             System.out.println("");
29         }

技术分享

菱形是画出来了,不过说实话自己越看越别扭。。。

套用了7个for循环,其中一个是为了排版用的

for循环语句输出菱形

标签:

原文地址:http://www.cnblogs.com/wgbs25673578/p/4854977.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!