Question: C++ Diamond Pattern Write a program that displays the following pattern: * *** ***** ******* ***** *** * Output description: Seven lines of output as
C++
Diamond Pattern
Write a program that displays the following pattern:
*
***
*****
*******
*****
***
*
Output description: Seven lines of output as follows:
The first consists of 3 spaces followed by a star.
The second line consists of 2 spaces followed by a 3 stars.
The third consists of one space followed by 5 stars, and the fourth consists just of 7 stars.
The fifth line is identical to third, the sixth to the second and the seventh to the first.
Thank you
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
