Participate in exhilarating programming contests, solve unique algorithm and data structure challenges and be a part of an awesome community.
Given an integer , print a full pyramid of asterisks.
A full pyramid of asterisks of size has lines of asterisks. The first line has 1 asterisk, the second line has 2 asterisks, the third line has 3 asterisks and so on. Each asterisk has a space between them. The asterisks in each line are centered to make it look like a pyramid.
Here is a full pyramid of asterisks of size 4:
*
* *
* * *
* * * *
The input will contain an integer ().
Print the full pyramid of asterisks of the given size.
Do not print any space after the last asterisk in each line.
Input | Output |
---|---|
3 | * * * * * * |
83% Solution Ratio
ashik_jiddneyEarliest,
ashik_jiddneyFastest, 0.0s
ReduancsLightest, 0 B
saitotaShortest, 38B
Login to submit