Answered step by step
Verified Expert Solution
Question
1 Approved Answer
JAVA: Write the Potion class needed by the following program in order to produce the output shown. Note it must work for other types of
JAVA:
Write the Potion class needed by the following program in order to produce the output shown. Note it must work for other types of Potion as well, such as new Potion("poison", 5). There is no need to check that the amount of potion is greater than zero.
class PotionTest( public static void main (String[] args) Potion potion - new Potion ("healing", 10) System.out.println (potion); // prints healing: 10 potion.drink (3) // drink the specified amount of the potion System.out.println (potion); // prints healing:7Step 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