Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

***JAVA PLEASE*** also please explain on what your are doing thank you! Background: A rental car company has hired you to build an inventory system

***JAVA PLEASE*** also please explain on what your are doing thank you!

image text in transcribedimage text in transcribedimage text in transcribed

Background: A rental car company has hired you to build an inventory system to keep track of their vehicles. The company, Acme Car Rentals, rents 3 classes of cars: Economy, Midsized and SUVs. Each rents for a different price. Their initial inventory is as follows: Type Make Model Color Current Mileage Original Cost Rental Rate Economy Nissan Versa Blue 105 $14,500 $25/day Economy Toyota Yaris White 8422 $17,500 $25/day Midsized Dodge Avenger Green 15720 $15,000 $45/day Midsized Ford Focus Yellow 2368 $14,500 $45/day SUV Toyota Rav4 Silver 432 $26,150 $80/day Classes you must create: Define a Vehicle class. It should have attributes for make, model, color, current mileage, original cost, and a boolean that keeps track of whether the vehicle is currently rented. It should have getters/setters for each attribute. It must have a constructor to set all attributes. It should have an override for to String or ToString which returns a string similar to: o Available: Blue Nissan Versa with 105 miles Rented: Blue Nissan Versa with 105 miles . O . O O Define an Economy_Car class. It should inherit from Vehicle. It should have an attribute daily_rental_rate. Create a constructor which takes in make, model, color, current mileage, original cost, and daily rental rate. Create an override for toString/ToString which prints: Economy Car: Rented: Blue Nissan Versa with 105 miles Note most of this is just the text that your parent class prints. O Define a Midsize_Car class. It should inherit from Vehicle. o It should have an attribute daily_rental_rate. Create a constructor which takes in make, model, color, current mileage, original cost, and daily rental rate. Create an override for to String/ToString which prints: Midsized Car: Available: Green Dodge Avenger with 15720 miles Note: Most of this is just the text that your parent class prints. O Define a SUV class. It should inherit from Vehicle. o It should have an attribute daily_rental_rate. Create a constructor which takes in make, model, color, current mileage, original cost, and daily rental rate. Create an override for toString/ToString which prints: I SUV: Available: Silver Toyota RAV4 with 432 miles Note: Most of this is just the text that your parent class prints. . Driver Program: In your driver class, create an ArrayList/List of Vehicles. Add each of the vehicles in the table above to your ArrayList/List. Create a method show_cars which takes in the ArrayList/List and prints out all of the vehicles in a menu like this: . 0. Return 1. Economy Car: Available: Blue Nissan Versa with 105 miles 2. Economy Car: Available: White Toyota Yaris with 8422 miles 3. Midsized Car: Available: Green Dodge Avenger with 15720 miles 4. Midsized Car: Available: Yellow Ford Focus with 2368 miles 5. SUV: Available: Silver Toyota RAV4 with 432 miles . Create a method rent_cars o Using a loop, prompt the user to: "Choose a car to rent:". Call the show_cars() method above to produce a menu. Read in a response, so long as it's not 0, mark the chosen car as rented. Create a method return_cars o Using a loop, prompt the user to: "Choose a car to rent:". Call the show_cars() method above to produce a menu. Read in a response, so long as it's not 0, mark the chosen car as available. Produce a main menu that looks like this: 1. Rent cars 2. Return cars 3. Quit Read in a choice and call the appropriate method above as long as the user doesn't choose 3. Sample Output: 1. Rent cars 2. Return cars 3. Quit 1 Choose a car to rent: 0. Return 1. Economy Car: Available: Blue Nissan Versa with 105 miles 2. Economy Car: Available: White Toyota Yaris with 8422 miles 3. Midsized Car: Available: Green Dodge Avenger with 15720 miles 4. Midsized Car: Available: Yellow Ford Focus with 2368 miles 5. SUV: Available: Silver Toyota RAV4 with 432 miles 1 Choose a car to rent: 0. Return 1. Economy Car: Rented: Blue Nissan Versa with 105 miles 2. Economy Car: Available: White Toyota Yaris with 8422 miles 3. Midsized Car: Available: Green Dodge Avenger with 15720 miles 4. Midsized Car: Available: Yellow Ford Focus with 2368 miles 5. SUV: Available: Silver Toyota RAV4 with 432 miles 3 Background: A rental car company has hired you to build an inventory system to keep track of their vehicles. The company, Acme Car Rentals, rents 3 classes of cars: Economy, Midsized and SUVs. Each rents for a different price. Their initial inventory is as follows: Type Make Model Color Current Mileage Original Cost Rental Rate Economy Nissan Versa Blue 105 $14,500 $25/day Economy Toyota Yaris White 8422 $17,500 $25/day Midsized Dodge Avenger Green 15720 $15,000 $45/day Midsized Ford Focus Yellow 2368 $14,500 $45/day SUV Toyota Rav4 Silver 432 $26,150 $80/day Classes you must create: Define a Vehicle class. It should have attributes for make, model, color, current mileage, original cost, and a boolean that keeps track of whether the vehicle is currently rented. It should have getters/setters for each attribute. It must have a constructor to set all attributes. It should have an override for to String or ToString which returns a string similar to: o Available: Blue Nissan Versa with 105 miles Rented: Blue Nissan Versa with 105 miles . O . O O Define an Economy_Car class. It should inherit from Vehicle. It should have an attribute daily_rental_rate. Create a constructor which takes in make, model, color, current mileage, original cost, and daily rental rate. Create an override for toString/ToString which prints: Economy Car: Rented: Blue Nissan Versa with 105 miles Note most of this is just the text that your parent class prints. O Define a Midsize_Car class. It should inherit from Vehicle. o It should have an attribute daily_rental_rate. Create a constructor which takes in make, model, color, current mileage, original cost, and daily rental rate. Create an override for to String/ToString which prints: Midsized Car: Available: Green Dodge Avenger with 15720 miles Note: Most of this is just the text that your parent class prints. O Define a SUV class. It should inherit from Vehicle. o It should have an attribute daily_rental_rate. Create a constructor which takes in make, model, color, current mileage, original cost, and daily rental rate. Create an override for toString/ToString which prints: I SUV: Available: Silver Toyota RAV4 with 432 miles Note: Most of this is just the text that your parent class prints. . Driver Program: In your driver class, create an ArrayList/List of Vehicles. Add each of the vehicles in the table above to your ArrayList/List. Create a method show_cars which takes in the ArrayList/List and prints out all of the vehicles in a menu like this: . 0. Return 1. Economy Car: Available: Blue Nissan Versa with 105 miles 2. Economy Car: Available: White Toyota Yaris with 8422 miles 3. Midsized Car: Available: Green Dodge Avenger with 15720 miles 4. Midsized Car: Available: Yellow Ford Focus with 2368 miles 5. SUV: Available: Silver Toyota RAV4 with 432 miles . Create a method rent_cars o Using a loop, prompt the user to: "Choose a car to rent:". Call the show_cars() method above to produce a menu. Read in a response, so long as it's not 0, mark the chosen car as rented. Create a method return_cars o Using a loop, prompt the user to: "Choose a car to rent:". Call the show_cars() method above to produce a menu. Read in a response, so long as it's not 0, mark the chosen car as available. Produce a main menu that looks like this: 1. Rent cars 2. Return cars 3. Quit Read in a choice and call the appropriate method above as long as the user doesn't choose 3. Sample Output: 1. Rent cars 2. Return cars 3. Quit 1 Choose a car to rent: 0. Return 1. Economy Car: Available: Blue Nissan Versa with 105 miles 2. Economy Car: Available: White Toyota Yaris with 8422 miles 3. Midsized Car: Available: Green Dodge Avenger with 15720 miles 4. Midsized Car: Available: Yellow Ford Focus with 2368 miles 5. SUV: Available: Silver Toyota RAV4 with 432 miles 1 Choose a car to rent: 0. Return 1. Economy Car: Rented: Blue Nissan Versa with 105 miles 2. Economy Car: Available: White Toyota Yaris with 8422 miles 3. Midsized Car: Available: Green Dodge Avenger with 15720 miles 4. Midsized Car: Available: Yellow Ford Focus with 2368 miles 5. SUV: Available: Silver Toyota RAV4 with 432 miles 3

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions