Star patterns set 3

You are currently viewing Star patterns set 3
Star pattern set 3

Are you preparing for the coding round ? if yes then you must know how to print the patterns. In coding interview interviewer may ask you print any number pattern , alphabet pattern or an character patterns. We recommend you to follow our patterns series so you will feel comfortable with printing patterns. In this blog post you will find set 3 of star patterns.

We recommend you to solve other types patterns as well –

 Click on the pattern and you will get redirected to the code.

Pattern 1

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

Code for pattern 1

Pattern 2

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

Code for pattern 2

Pattern 3

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

Code for pattern 3

Pattern 4

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

Code for pattern 4

Pattern 5

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

Code for pattern 5

Leave a Reply