148k views
3 votes
Create a New Java Project called YourLastNameVacationRental. Write an application for Lambert's Vacation Rentals. Use combo boxes to allow a client to select one of three locations; use combo boxes to allow a client to select the number of bedrooms; use a single selection mode list to allow a client to decide whether or not meals are included in the rental. Assume that the locations are Parkside for $700 per week, Poolside for $850 per week, or Lakeside for $1025 per week. Assume that the rentals have one, two, or three bedrooms and that each bedroom over one adds $80 to the base price.

1 Answer

3 votes

Final answer:

The Java project 'YourLastNameVacationRental' for Lambert's Vacation Rentals should include combo boxes for selections and a list for meal inclusion, with prices varying based on location and number of bedrooms.

Step-by-step explanation:

To create the 'YourLastNameVacationRental' Java project for Lambert's Vacation Rentals, one must use combo boxes for location and bedroom selections, and a single selection list for meal inclusion. The base rental rates are $700 for Parkside, $850 for Poolside, and $1025 for Lakeside per week. Adding bedrooms incurs an $80 surcharge for each additional room beyond the first. Using this data, you can calculate the total cost based on user inputs. The programming for this should include event listeners to respond to user selections and update the total cost accordingly.

For the application to function as expected, it's essential to implement appropriate logic to calculate the cost. For instance, if a client selects Lakeside with three bedrooms, the base price would be $1025 plus an additional $160 for the extra bedrooms, making the total $1185 per week, without meals. A GUI with proper layout and components must be designed to ensure a user-friendly experience while making their vacation rental selections.

User Rkz
by
7.1k points