Question: Modify the code by providing a modified approach to the class or suggestions for enhancement. import java.util.Scanner; public class RoblesOscar_DiscWk8 { private boolean isOn; public
Modify the code by providing a modified approach to the class or suggestions for enhancement.
import java.util.Scanner; public class RoblesOscar_DiscWk8 { private boolean isOn; public RoblesOscar_DiscWk8() { isOn = false; } public void turnOn() { if (!isOn) { isOn = true; System.out.println("The oven is now on."); } else { System.out.println("The oven is already on."); } } public void turnOff() { if (isOn) { isOn = false; System.out.println("The oven is now off."); } else { System.out.println("The oven is already off."); } } public static void main(String[] args) { RoblesOscar_DiscWk8 myOven = new RoblesOscar_DiscWk8(); myOven.turnOn(); myOven.turnOff(); } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
