subject

Implement a class Car with the following properties:(IN JAVA) 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; in addition, in the constructor:
The initial fuel level is 0.
The initial miles driven is 0.
Supply a method drive that simulates driving the car for a certain distance, reducing the fuel level in the gas tank.
Supply a method getGasLevel to return the current fuel level.
Supply a method getMileage to return the total miles driven.
Supply a method addGas to tank up.
Implement a (second) main tester class with the following source code:
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
System. out. println(myHybrid. getMileage()); // Print total miles driven
myHybrid. addGas(5); // Tank 5 gallons
myHybrid. drive(90); // Drive 90 miles
System. out. println(myHybrid. getGasLevel()); // Print fuel remaining
System. out. println(myHybrid. getMileage()); // Print total miles driven

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 16:00
Ramon is graphing the function  f(x) = 3(4)x. he begins by plotting the initial value. which graph represents his initial step?
Answers: 2
question
Computers and Technology, 21.06.2019 18:30
Which statement best explains how plant cells use photosynthesis to maintain homeostasis? they use glucose and water to make energy. they break down glucose into fat. they combine oxygen and water to make glucose. they make glucose from carbon dioxide and water.
Answers: 1
question
Computers and Technology, 22.06.2019 04:00
Which spereadsheet type will determine how well a bussiness has done over the past year
Answers: 1
question
Computers and Technology, 22.06.2019 22:30
What is the most popular genre of video games?
Answers: 1
You know the right answer?
Implement a class Car with the following properties:(IN JAVA) A car has a certain fuel efficiency (...
Questions
question
Chemistry, 20.04.2020 22:18
question
Mathematics, 20.04.2020 22:18
Questions on the website: 13722361