c++ shell Write a program which prompts the user for the number of rooms to be cleaned and the sizes of the room. The cost of cleaning is calculated using a minimum room size of 10 x 12 at a cost of RM39. All rooms larger than 10 x 12 are charged RM0.25 per square foot. */ /* The number and size of rooms is input. */ /* The output is the cost of cleaning the rooms. */ You are required to create function definition for the following function prototype to be used in your program. function prototypes // function getNumber reads in the number of rooms int getNumber(); // function getSize reads in the size of a room void getSize(int, int &, int &); // function calcCost calculates the cost to clean a room int calcCost(int, int = 10, int = 12); /* function displayCost displays the total cost for cleaning */ void displayCost (int, int);
c++ shell
Write a program which prompts the user for the number of rooms to be cleaned and the sizes of the room. The cost of cleaning is calculated using a minimum room size of 10 x 12 at a cost of RM39. All rooms larger than 10 x 12 are charged RM0.25 per square foot. */
/* The number and size of rooms is input. */
/* The output is the cost of cleaning the rooms. */
You are required to create function definition for the following function prototype to be used in your program.
function prototypes // function getNumber reads in the number of rooms int getNumber(); // function getSize reads in the size of a room void getSize(int, int &, int &); // function calcCost calculates the cost to clean a room int calcCost(int, int = 10, int = 12); /* function displayCost displays the total cost for cleaning */ void displayCost (int, int); |
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images