shouldz

ControleRemotoPOO(03-Objeto)

Oct 19th, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.41 KB | None | 0 0
  1. package Controle_Remoto_V2;
  2.  
  3. public class ControleRemoto {
  4.     public static void main(String[] args) {
  5.         ControleBluePrint c1 = new ControleBluePrint();
  6.         c1.trocarPilha(1);
  7.         c1.ligar();
  8.         c1.maisVolume();
  9.         c1.canalAcima();
  10.         c1.canalAcima();
  11.         c1.abrirMenu();
  12.         c1.desligar();
  13.         c1.maisVolume();
  14.         c1.ligar();
  15.         c1.abrirMenu();
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment