Write a class named gastank containing:
an instance variable named amount of type double, initialized to 0.
a 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.
a 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.
a method named getgaslevel that accepts no parameters.
getgaslevel returns the value of the amount instance variable.

Solved
Show answers

Ask an AI advisor a question