The code above is c version in java you must make the


class Room

{

private:

double L;

double W;

public:

//functions go here.

}

class House

{

private:

Room room1;

Room room2;

public:

//functions go here

}

The code above is C++ version. In java, you must make the variables private. Dont forget to use the "new" command. Basic Example: House h = new House();

*Make sure each class is in its own file with the correct functions and data types*

The program will basically ask the user to input a L and W for a room, then ask for L and W for the other room. It will then calculate which of the two rooms is bigger. It should assign the bigger room to the parents and smaller room to children. State: "parents get room #_ of size __", "children get room #_ of size __".

Make sure to actually use the class objects for this program

Solution Preview :

Prepared by a verified Expert
JAVA Programming: The code above is c version in java you must make the
Reference No:- TGS01275343

Now Priced at $40 (50% Discount)

Recommended (91%)

Rated (4.3/5)