在 Java 程序中打印金字塔星形图案

在本文中,我们将了解如何打印金字塔星形图案。该模式是通过使用多个 for 循环和 print 语句形成的。

以下是相同的演示 -

输入

假设我们的输入是 -

输入行数: 8

输出

所需的输出将是 -

金字塔星形图案:

       *

      * *

     * * *

    * * * *

   * * * * *

  * * * * * *

 * * * * * * *

* * * * * * * *

算法

Step 1 - START

Step 2 - Declare three integer values namely i, j and my_input

Step 3 - Read the required values from the user/ define the values

Step 4 - We iterate through two nested 'for' loops to get space between the characters.

Step 5 - After iterating through the innermost loop, we iterate through another 'for' loop. This will help print the required character.

Step 6 - Now, print a newline to get the specific number of characters in the subsequent lines.

Step 7 - Display the result

Step 8 - Stop

示例 1

这里,输入是由用户根据提示输入的。中试用此示例。

import java.util.Scanner;

public class Pyramid{

   public static void main(String args[]){

      int i, j, my_input;

      System.out.println("Required packages have been imported");

      Scanner my_scanner = new Scanner(System.in);

      System.out.println("已定义阅读器对象 ");

      System.out.print("输入行数: ");

      my_input = my_scanner.nextInt();

      System.out.println("金字塔星形图案: ");

      for (i=0; i<my_input; i++){

        for (j=my_input-i; j>1; j--){

           System.out.print(" ");

        }

        for (j=0; j<=i; j++ ){

           System.out.print("* ");

        }

        System.out.println();

      }

   }

}

输出结果
Required packages have been imported

已定义阅读器对象

输入行数: 8

金字塔星形图案:

      *

     * *

    * * *

   * * * *

  * * * * *

 * * * * * *

 * * * * * * *

* * * * * * * *

示例 2

在这里,整数已经被预先定义,它的值被访问并显示在控制台上。

public class Pyramid{

   public static void main(String args[]){

      int i, j, my_input;

      my_input = 8;

      System.out.println("行数定义为 " +my_input);

      System.out.println("金字塔星形图案: ");

      for (i=0; i<my_input; i++){

         for (j=my_input-i; j>1; j--){

             System.out.print(" ");

         }

         for (j=0; j<=i; j++ ){

            System.out.print("* ");

         }

         System.out.println();

      }

   }

}

输出结果
行数定义为 8

金字塔星形图案:

       *

      * *

     * * *

    * * * *

   * * * * *

  * * * * * *

 * * * * * * *

* * * * * * * *

以上是 在 Java 程序中打印金字塔星形图案 的全部内容, 来源链接: utcz.com/z/297180.html

回到顶部