Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program in JAVA 1) Odometer Define a class called Odometer that will be used to track fuel and mileage for an automobile The
Write a program in JAVA 1) Odometer Define a class called Odometer that will be used to track fuel and mileage for an automobile The class should have instance variables to track the miles driven and the fuel efficiency of the vehicle in miles per gallon. Include a mutator method to reset the odometer to zero miles, a mutator method to set the fuel efficiency, a mutator method that accepts miles driven for a trip and adds it to the odometer's total, and an accessor method that returns the number of gallons of gasoline that the vehicle has consumed since the odometer was last reset Three Instance Variables: model (String), miles (int) and fuel efficiency (double) . Default Constructor without parameters Constructor with three parameters. A mutator method to set the fuel efficiency. A mutator method to set the model. A mutator method to reset the odometer to zero miles A mutator method that accepts miles driven for a trip and adds it to the odometer's total An accessor method that returns the number of gallons of gasoline that the vehicle has consumed since the odometer was last reset 2) Test your class with a driver class that creates several trips with different fuel efficiencies. Sample Output: For your fuel-efficient small Honda car: After 100 miles, 2.22 gallons used. After another 50 miles, 3.33 gallons used For your gas guzzler Porsche car: After 100 miles, 7.69 gallons used. After another 50 miles, 11.54 gallons used 3)Write the program using Odometer.java and Drvier.java
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started