Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

Write a class named GasTankcontaining: An instance variable named amountof type double , initialized to 0. An instance variable named capacityof type...

classnamed

  • An instance variable named amount of type doubleinitialized to 0.
  • An instance variable named capacity of type double.
  • constructor that accepts a parameter of type double. The value of the parameter is used to initialize the value of capacity.
  • method named addGas that accepts a parameter of type double. The value of the amount instance variable is increased by the value of the parameter. However, if the value of amount is increasedbeyond the value of capacity, amount is set to capacity.
  • method named useGas that accepts a parameter of type double. The value of the amount instance variable is decreased by the value of the parameter. However, if the value of amount is decreasedbelow 0, amount is set to 0.
  • method named isEmpty that accepts no parameters. isEmpty returns a boolean valuetrue if the value of amount is less than 0.1, and false otherwise.
  • method named isFull that accepts no parameters. isFull returns a boolean valuetrue if the value of amount is greater than capacity-0.1, and false otherwise.
  • method named getGasLevel that accepts no parameters. getGasLevel returns the value of the amount instance variable.
Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question