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

四棱坠

时间:2020-12-29 11:35:46      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pack   i++   ack   class   stat   generated   method   todo   main   

package 随堂;

public class 四棱坠 {

public static void main(String[] args) {
// TODO Auto-generated method stub
for (int i = 1; i <= 10; i++) {

for (int j = 10; j >=i;j--)
{
System.out.print(" ");
}
for (int j = 1; j <= i*2-1; j++)
{
System.out.print("*" );
}
System.out.println();

}
for (int a = 1; a <= 10; a++)
{
for(int b=1; b<=a; b++){
System.out.print(" ");
}
for(int b=19;b>=a*2-1;b--)
{
System.out.print("*");
}
System.out.println(); }
}

}

四棱坠

标签:pack   i++   ack   class   stat   generated   method   todo   main   

原文地址:https://www.cnblogs.com/fengchedao/p/14180625.html

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