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





Pattern- 8 Star Print


Pattern- 8 Star Print




Logic- 

    

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

 



Program--



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

      class Pattern8 
{
  public static void main(String[] args)
   {
  for(int i=1; i<=5; i++)
      {
   for(int j=2; j<=i; j++)
      {
   System.out.print("  ");
      }
   {
for(int k=i; k<=5; 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





Pattern- 7 star Print Decrement

                                  


                               Pattern- 7 star Print 



Logic- 

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

                                 } 


Program- 


                                              * * * * *
                                      * * * *
                                      * * *
                                      * * 
                                      * 
             
 
       class Pattern7 
{
  public static void main(String[] args)

   {
  for(int i=1; i<=5; i++)
      {
   for(int j=i; j<=5; j++)
   {
        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






Pattern- 6 Star Print Increment order

                       Pattern- 6 Star Print 


 Logic -

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


Program-


                                                               * 
                                                       * * 
                                                       * * *
                                                       * * * *
                                                       * * * * *
               
 
 class Pattern6 
{
  public static void main(String[] args)

   {
  for(int i=1; i<=5; i++)
      {
   for(int j=1; j<=i; j++)
   {
        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








Saturday, September 18, 2021

Pattern -5 Number print 1 to 25

                         


Pattern -5

      

Logic--- 

                                     int k=1;


                                       for(int i=1; i<=5; i++) 

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


Program---

    
                                                            1  2  3  4  5
                                                           6  7  8  9  10
                                                          11 12 13 14 15
                                                             16 17 18 19 20
                                                         21 22 23 24 25


 
         class Pattern5
{
            public static void main(String[] args)
{
          int k=1;

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

                         }
                           System.out.println( );    
          }
}
}

For Proper Understanding Watch the Video :-






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


         Study:)

  Youtube                      Instagram                             Facebook  
  


 Self:)                                             Instagram                           Facebook



Pattern -4 number print 1 0 1 0 1

 

 

Pattern -4


Logic---

                      for(int i=1; i<=5; i++) 
                {
               for(int j=1; j<=5; j++)
           {
           if(j%2==0)
        {
             System.out.print("0 ");
         }
        else
                  System.out.print("1 ");
                   }
                              System.out.println( );    
         } 


Program--

                                                           1  0  1  0  1
                                                         1  0  1  0  1
                                                              1  0  1  0  1
                                                             1  0  1  0  1
                                                         1  0  1  0  1

 


            class Pattern4
{
           public static void main(String[] args)
{
         
  for(int i=1; i<=5; i++) 
      {
   for(int j=1; j<=5; j++)
   {
   if(j%2==0)
   {
   System.out.print("0 ");
   }
   else
   System.out.print("1 ");

       }
           System.out.println( );    
  }
}
}


For Proper Understanding Watch the Video :-






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


         Study:)

  Youtube                      Instagram                             Facebook  
  


 Self:)                                             Instagram                           Facebook








Pattern- 9 Star Pattern

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