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

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!