Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 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: 1. Neatness of code and use of proper indentation of 4 spaces, 8 spaces, 12 spaces, etc. 2. Commenting of code - including Class comment, @author, @version tags, and code comments 3. Good use of constant and variable names - they should be descriptive names and not individual characters or abbreviations. 4. Correct calculations using variables and constants (i.e. the math is correct) 5. Correctly formatted output
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