Question: For the problem below state the purpose in your own words, specify input that is needed, expected output, and the step by step process that

For the problem below state the purpose in your own words, specify input that is needed, expected output, and the step by step process that will obtain the output from the input (the algorithm).Remember you are not to create actual C++ code, but describe what should be done. For example, a nested loop could be described as the following:

-Create an outer loop that runs from 1 to 5

-Inside this outer loop output the variable name and the equal sign followed by the value in the variable

-Have an inner loop that runs from 1 to the value of the variable for the outer loop.

-The inner loop should output the value in the variable of the variable for the inner loop followed by a space.

-Once the inner loop has completed, out a new line and go to the next iteration of the outer loop

PROBLEM:

Create a process that will create a pattern in which is a pyramid. The user should enter the maximum number of rows to be output, then 1 should be output in the first row, 1 2 3 output in the second row, 1 2 3 4 5 should be output in the 3 row, etc. For example if the user entered 5 the following would be output.

1

123

12345

1234567

123456789

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!