Character patterns set 1

You are currently viewing Character patterns set 1
Character patterns set

We know that coding is not for everyone , but every coder must know how to print patterns. In technical round you will ask to write a program to print 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 1 of character 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

A
AB
ABC
ABCD
ABCDE

Code for pattern 1

Pattern 2

A
BB
CCC
DDDD
EEEEE

Code for pattern 2

Pattern 3

A
BB
CCC
DDDD
EEEEE
DDDD
CCC
BB
A   

Code for pattern 3

Pattern 4

A
AB
ABC
ABCD
ABCDE
ABCD
ABC
AB
A

Code for pattern 4

Pattern 5

ABCDEF
ABCDE
ABCD
ABC
AB
A
A
AB
ABC
ABCD
ABCDE
ABCDEF

Code for pattern 5

Leave a Reply