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

输出三角行

时间:2015-12-04 09:13:50      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:

package dududu;

public class DDDddd {

    public static void main(String[] args) {
        // TODO 自动生成的方法存根

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

    }

}

输出为 *
   ***
  *****
 *******
*********

输出三角行

标签:

原文地址:http://www.cnblogs.com/ljxe/p/5018274.html

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