Question: Write a Cpp program called shapes.cpp. Create a function in it call drawShape which takes an integer as input and if the input is an
Write a Cpp program called shapes.cpp. Create a function in it call drawShape which takes an integer as input and if the input is an odd number it generates the following shape.
void drawShape (int num)
{ //complete implementation of the function }
int main()
{ drawShape(5); } For example for drawShape(5) the result should be: ***** *** * Or for example for drawShape(6) the result should be: The input is not odd so no output is generated Hint: Use a nested for loop.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
