Answered step by step
Verified Expert Solution
Question
1 Approved Answer
In C++ please.. 2. Figures. Create a project titled Lab5_Figures. This project shall contain multiple files Write a program that repeatedly asks the user to
In C++ please..
2. Figures. 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
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