用java编写小程序打印“金字塔”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用java编写小程序打印“金字塔”相关的知识,希望对你有一定的参考价值。

package demo1;


public class Demo {

    public static void main(String[] args) 
    {
        int a=4;
        for(int i=1;i<=a;i++)
        {
            for(int k=1;k<=a-i;k++)
            {
                System.out.print(" ");
            }
            for(int j=1;j<=(i-1)*2+1;j++)
            {
                System.out.print("*");
            }
            System.out.println();
        }
        

    }

}

     *
   ***

  *****

*******

技术分享
package demo1;


public class Demo {

    public static void main(String[] args) 
    {
        int a=4;
        for(int i=1;i<=a;i++)
        {
            for(int k=1;k<=a-i;k++)
            {
                System.out.print(" ");
            }
            for(int j=1;j<=(i-1)*2+1;j++)
            {
                if(i==1||i==a)
                {
                System.out.print("*");
                }
                else
                {
                    if( j==1||j==(i-1)*2+1)
                    {
                        System.out.print("*");
                    }
                    else
                    {
                        System.out.print(" ");
                    }
                        
                }
            }
            System.out.println();
        }
        

    }

}
View Code

     *
   *   *
 *       *
*******

 

以上是关于用java编写小程序打印“金字塔”的主要内容,如果未能解决你的问题,请参考以下文章

怎样用JAVA打印出下面下列数字金字塔

怎么用java打印金字塔

用python打印数字金字塔

怎样用JAVAscript编写数字金字塔

求镂空的倒金字塔java代码....金字塔可用*代替! 谢了

用java把1-100这100个数字按顺序排成金字塔形状,尽量用最简单的代码实现