Question: I want you to write a program that creates a block pyramid. You are expected to take in a single positive integer which will be

I want you to write a program that creates a block pyramid. You are expected to take in a single positive integer which will be used as the height of your pyramid, for the purposes of this first lab you can assume that the user will always provide a valid integer greater than 0 and less than 1000 (I.e. there is no need for input validation). The very top of your pyramid will have a single block with each level having 1 more block until you have created a pyramid with the correct number of levels. In addition to the before mentioned requirements, a few things to note that might not be as evident from the screenshot: 1. The very bottom left is left aligned (I.e. no spaces) 2. There are no spaces after the right most pyramid in a single level. 3. The bottom most row does not end with a new line. Sample Output: Here is an example of a pyramid of height 3: Here is an example of a pyramid of height 5
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
