Write down the program which prompts for number of rooms in house. Use input, n, to declare array of rectangles dynamically. In loop, input dimensions for n rooms, and then output total area of house. Scan array to recognize the room with largest perimeter, and output its dimensions. This program prompts user for number of rooms in house. Create dynamically array of rectangles to hold dimensions of each room. Calculate and output total area of house. Identify room with largest perimeter and output it's dimensions.