Advertisement
Swaster

Odkurzacz.java

Jan 17th, 2025
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public class Odkurzacz extends Urzadzenie {
  2.     private boolean czyWlaczony = false;
  3.  
  4.     public void on() {
  5.         if (!czyWlaczony) {
  6.             czyWlaczony = true;
  7.             this.wyswietlKomunikat("Odkurzacz włączony");
  8.         }
  9.     }
  10.  
  11.     public void off() {
  12.         if (czyWlaczony) {
  13.             czyWlaczony = false;
  14.             this.wyswietlKomunikat("Odkurzacz wyłączony");
  15.         }
  16.     }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement