import java.util.*;
public class Pattern5 {
    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 = 0; i <a; i++) 
       {
           for(int j=0;j<a;j++)
           {
                if (i+j>=(a-1)) {
                    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