Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started