Pattern 1

easy
Take as input a number n, the number of rows<br>
 Print the following pattern<br>
 *
 *	*
 *	*	*
 *	*	*	*
 *	*	*	*	*
 for n = 5.

Input Format

Integer

Output Format

Pattern for n = 5. * * * * * * * * * * * * * * *

Constraints

  n <= 10 ^ 9

Notice

Try First, Check Solution later

1. You should first read the question and watch the question video.
2. Think of a solution approach, then try and submit the question on editor tab.
3. We strongly advise you to watch the solution video for prescribed approach.
Next
Pattern 2

Related Questions