Question: c++ This program will output a parallelogram. How long do you want each side to be? 6 Please enter the character you want it to

c++ This program will output a parallelogram. How long do you want each side to be? 6 Please enter the character you want it to be made of: @ @ @@ @@@ @@@@ @@@@@ @@@@@@ @@@@@ @@@@ @@@ @@ @ This program will output a parallelogram. How long do you want each side to be? 9 Please enter the character you want it to be made of: * * ** *** **** ***** ****** ******* ******** ********* ******** ******* ****** ***** **** *** ** * 

Here are the rules:

Your program must use at least one for-loop.

Your program must output the parallelogram just one character at a time, inside a loop. (You will need nested loops.)

Your program must work with any length greater than 1. (You don't need to do any error checking for bad input)

Your program must use the character the user inputs to draw the parallelogram.

Hint: I recommend you think of this as a program to output two triangles, one above the other (the longest horizontal line is the border between the triangles).

Hint #2: To make this easier to solve, start by writing a program that outputs this text for the last example above:

 1* 2* 3* 4* (etc.) 

After that is done, then figure out how to output the right number of characters.

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!