I. Problem. Find the square footage of a house.
II. Analysis. The intent for this program is to calculate the square footage of a house with no more than four rooms that are rectangular in shape. In order to do this we will identify each room, input the length (l) and width (w) of each room, multiply the l x w of each room to get the square foot, and add the sum of each room to secure the total square footage of the house. Room1 – Area = L x W
Room2 – Area = L x W
Room3 – Area = L x W
Room4 – Area = L x W
Room1 + Room2 + Room3 + Room4 = Total Square Footage
III. Design
Main Module Call Input Data module Call Perform Calculations module Call Output Results module
End Program
Main