Question: Create a project titled Lab5_Figures. This project shall contain multiple files . Write a program that repeatedly asks the user to select either a square,
Create a project titled Lab5_Figures. This project shall contain multiple files. Write a program that repeatedly asks the user to select either a square, slash (diagonal line), backlash(reverse diagonal line) or a cross, then inputs the figure size and prints the appropriate figure in stars. For square, the program should ask whether the user wants a filled or a hollow square. The program should quit if the user inputs an invalid option. See an example dialog below:
1. square
2. slash
3. backslash
4. cross
select figure: 1
select size: 4
filled or hollow [f/h]: h
****
* *
* *
****
1. square
2. slash
3. backslash
4. cross
...
You can reuse your code from the Looping lab. Place star-printing code in four separate functions: filledSquare(), hollowSquare(), shash(), backslash() and cross(). Each function should accept a single integer parameter - the size of the figure and return no value (be a void-function). Create three separate files figures.cpp, figures.h, and figuresInput.cpp. Place the triangle and square function definitions in figures.cpp and their prototypes in figures.h. Make sure that the header file is protected against multiple inclusion. Place the main function in figuresInput.cpp
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
