Question: Implementing a Car class You will use what you have learned from Chapters 8 in Big Java: Late Objects to complete a Car program. Use
Implementing a Car class
You will use what you have learned from Chapters 8 in Big Java: Late Objects to complete a Car program. Use what you have learned about the classes, objects, accessor, and mutator to complete the project.
Please comment on your program correctly. **Please do not use any advanced material that is not in Chapter8.
Implement a class Car with the following properties. A car has a certain fuel efficiency (measured in miles/gallon) and a certain amount of fuel in the gas tank. The efficiency is specified in the constructor, and the initial fuel level is 0. Supply a method drive that simulates driving the car for a certain distance, reducing the fuel level in the gas tank, and methods getGasLevel, to return the current fuel level, and addGas, to tank up. Write main() to create and test car objects.
Sample usage:
Car myHybrid = new Car(50); //50 miles per gallon
myHybrid.addGas(20); //Tank 20 gallons
myHybrid.drive(100); //Drive 100 miles
System.out.println(myHybrid.getGasLevel()); //Print fuel remaining
Testing and Submitting
At the end of your source program include the output from your program during your testing, as comment. If your program does not run and gives you any kind of error , include that message.
Once you have thoroughly tested your program, please upload the .java file only in Assessments > Assignments by Monday, October 5.
You will be graded on:
- Neatness of code and use of proper indentation of 4 spaces, 8 spaces, 12 spaces, etc.
- Commenting of code - including Class comment, @author, @version tags, and code comments
- Good use of constant and variable names - they should be descriptive names and not individual characters or abbreviations.
- Correct calculations using variables and constants (i.e. the math is correct)
- Correctly formatted output
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
