Instructions
In this homework, you will design a program to perform the following task: Calculate the usable area in square feet of house. Assume that the house has a maximum of four rooms, and that each room is rectangular. There are 4 components of your submission including:
Program Description- A detailed, clear description of the program you are building.
Analysis- Demonstrates your thought process and steps used to analyze the problem. Be sure to include the required input and output and how you will obtain the required output from the given input? Also, include your variable names and definitions. Be sure to describe the necessary formulas and sample calculations that might be needed.
Test plan - Prepare at least 3 sets of input data (Test data) along with their expected output for testing your program. Your test data can be presented in the form of a table as follows (note: feel free to adapt to your design)
Pseudocode- Provide pseudocode of your overall design that fulfills the requirements of the project
All of these components can be placed in word document. Example application test data:
Test Case #
Input
Expected Output
1
Room1: length=10, width=14;
Room 2: length=9, width=10;
Room 3: length=12, width=12;
374 square feet
2
Your room dimensions
Your output
3
Your room dimensions
Your output
Submission requirements:
Your completed assignment should be saved as Word document and submitted to your assignment area no later than the due date listed in the syllabus. Your document should be neat, well-written with minimal grammatical and spelling errors. Your name should be clearly listed on the first page along with the class/section, professor and due date. Your document should contain page numbers at the bottom of each page. Single or double space line formatting is acceptable.
Program that will calculate the number of square feet (living space) in a 4-room house.
Problem Analysis
In this Program