Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started