Thursday, September 23, 2021

Pattern- 9 Star Pattern

 

Pattern- 9 Star Pattern 


Logic-

                                 for(int i=1; i<=5; i++)
                         {
                         for(int j=i; j<=4; j++)
                 {
           System.out.print("  ");
                   }
                   {
                     for(int k=1; k<=i; k++)
                               System.out.print("* ");
                             }
                                    System.out.println( );    
                 }

Program- 

                                                                 *
                                                                      * *
                                                           * * *
                                                        * * * *
                                                     * * * * *
                
 

      class Pattern9 
{
  public static void main(String[] args)
   {
  for(int i=1; i<=5; i++)
      {
   for(int j=i; j<=4; j++)
      {
   System.out.print("  ");
      }
   {
for(int k=1; k<=i; k++)


          System.out.print("* ");
       }
             System.out.println( );    
  }
   }
}


For Proper Understanding Watch the Video :-







Thanks;) 
All the Best :)
Keep Learning:) 


         Study:)

                               Youtube                      Instagram                             Facebook  
  


 Self:)                                             Instagram                           Facebook





No comments:

Post a Comment

Pattern- 9 Star Pattern

  Pattern- 9 Star Pattern  Logic-                                  for(int i=1; i<=5; i++)                          {              ...