import java.util.*;
public class Pattern3 {
    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("# ");
                }
                else
                {
                    System.out.print(" ");
                }
           }
           System.out.println("");
       } 
       ab.close();
    }
}
Comments
Post a Comment
THANK YOU FOR COMMENTING !
PLEASE SUBSCRIBE TO OUR WEBSITE FOR LATEST UPDATES