I’m having trouble getting my code to compile. Could you help me please?
I’m having trouble getting my code to compile. Could you help me please? public class microwave { boolean isOn = true; public microwave(){ } public boolean isOn() { return isOn; } public void display() { System.out.println(“The microwave is ready:” + microwave.this.isOn); } public static void main(String[] args) { microwave spin = new microwave(); spin.display(); } […]