📜  在Java中打印三角形图案

📅  最后修改于: 2022-05-13 01:55:37.064000             🧑  作者: Mango

在Java中打印三角形图案

给定一个数字 N,任务是打印以下模式:-

例子:

Input : 10
Output :                    
          * 
         * * 
        * * * 
       * * * * 
      * * * * * 
     * * * * * * 
    * * * * * * * 
   * * * * * * * * 
  * * * * * * * * * 
 * * * * * * * * * * 

Input :5
Output :
     * 
    * * 
   * * * 
  * * * * 
 * * * * * 

打印上述模式需要一个嵌套循环。外部循环用于运行作为输入给出的行数。外循环中的第一个循环用于打印每个星之前的空格。正如你所看到的,当我们向三角形的底部移动时,每一行的空格数都会减少,所以这个循环在每次迭代中运行的时间减少了一次。外循环中的第二个循环用于打印星星。正如你所看到的,随着我们向三角形底部移动,每行中的星数增加,所以这个循环在每次迭代中多运行一次。如果该程序是空运行的,则可以实现清晰度。

// Java Program to print the given pattern
import java.util.*; // package to use Scanner class
class pattern {
    public static void main(String[] args)
    {
        Scanner sc = new Scanner(System.in);
        System.out.println("Enter the number of rows to be printed");
        int rows = sc.nextInt();
  
        // loop to iterate for the given number of rows
        for (int i = 1; i <= rows; i++) {
  
            // loop to print the number of spaces before the star
            for (int j = rows; j >= i; j--) {
                System.out.print(" ");
            }
  
            // loop to print the number of stars in each row
            for (int j = 1; j <= i; j++) {
                System.out.print("* ");
            }
  
            // for new line after printing each row
            System.out.println();
        }
    }
}