Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Pralka extends Urzadzenie {
- private static int wybranyProgram = 0;
- public int ustawProgram(int program) {
- if(program >= 1 && program <= 12) {
- wybranyProgram = program;
- } else {
- wybranyProgram = 0;
- }
- return wybranyProgram;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement