public class Lab7MainClass {

    public static void main (String [] args ) {

	// room 1
    dormClass room1 = new dormClass ();
    room1.setRoommate(true,true,"Stacy");
    room1.setBooks(2,"The Sand Man", "The Book of computers", "Book 3", "Book 4");
    room1.setTV(false);
    room1.setBed(true);
    System.out.println("Displaying room 1");
    if(room1.getHasRoommate()) {
        System.out.print("kates roomate is " + room1.getRoommateName());
    
        if(room1.isFemale())
            System.out.println(" and she is female");
        else
            System.out.println(" and he is male");
    }

    System.out.println("The number of books in the room is " + room1.getNumBooks());

    System.out.println("The books names are " + room1.getBook1Title() +" and " + room1.getBook2Title());

    if(room1.getBed())
        System.out.println("The bed is made");
    else
        System.out.println("The bed is not made");

    if(room1.getTV())
        System.out.println("The TV is on");
    else
        System.out.println("The TV is off");
    
    // end of room 1    
    }
}

