Model a room class, whose member data is three integers length, width and height. The class contains two constructors to initialize the room class objects, first is no argument constructor, while the second in three arguments constructor. Class also contains three member functions i.e., getdatat) to get the data from user and store in the memory of calling object and showdata) to show the room data of calling object, int volume(int I, int w, int h) function should receive the length, width and height values from the objects one by one and return the volumes of the three objects respectively. Write a main program to declare the three object rl, 12, and 13 of room class. Two object will store the values through three argument constructor and third object will get the data from user by calling getdata function. Then all three objects should call the volume functions to calculate their volumes and store them in three variables of type integer. Finally the system compare the three volumes values stored in integer variable and decide that which room rl, 12 or 3 among three is larger and display a message that "Area of Room # largest and suitable for HALL purpose"
Model a room class, whose member data is three integers length, width and height. The class
contains two constructors to initialize the room class objects, first is no argument
constructor, while the second in three arguments constructor. Class also contains three
member functions i.e., getdatat) to get the data from user and store in the memory of calling
object and showdata) to show the room data of calling object, int volume(int I, int w, int h)
function should receive the length, width and height values from the objects one by one and
return the volumes of the three objects respectively.
Write a main
will store the values through three argument constructor and third object will get the data
from user by calling getdata function. Then all three objects should call the volume
functions to calculate their volumes and store them in three variables of type integer. Finally
the system compare the three volumes values stored in integer variable and decide that which
room rl, 12 or 3 among three is larger and display a message that "Area of Room #
largest and suitable for HALL purpose"
is
Step by step
Solved in 2 steps