Skip to main content

Pattern: Pattern 1

import java.util.*;

public class Pattern1
{
    public static void main(String[] args) {
        Scanner ab=new Scanner(System.in);

        System.out.println("Enter the no. of rows you want in the Pattern:");
        int a= ab.nextInt();

       for (int i = 1; i <=a; i++)
       {
           for(int j=1;j<=a;j++)
           {
                if (i-j>=0) {
                    System.out.print("# ");
                }
           }
           System.out.println("");
       }
       ab.close();
    }
}  

    

Comments