Write a program that prompts for the number of rooms in a house. Use the input, n, to declare an array of rectangles dynamically. In a loop, input the dimensions for the n rooms, and then output the total area of the house. Scan the array to identify the room with the largest perimeter, and output its dimensions.
This program prompts the user for a number of rooms in a house.
creates dynamically an array of rectangles to hold the dimensions of each room.
calculates and output the total area of the house
identifies the room with the largest perimeter and output it's dimensions.
the main file to use is:
#include "d_rect.h"