Advertisement
lollhosh

exercicio

Aug 19th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. *
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package exercicioetec;
  7.  
  8. import java.util.ArrayList;
  9.  
  10. /**
  11. *
  12. * @author windows
  13. */
  14. public class ExercicioETEC {
  15.  
  16. /**
  17. * @param args the command line arguments
  18. */
  19. public static void main(String[] args) {
  20. // TODO code application logic here
  21.  
  22. TelaPrincipal tela = new TelaPrincipal();
  23. tela.setVisible(true);
  24.  
  25. ArrayList<Usuario> Usuarios = new ArrayList();
  26.  
  27. for( Usuario u : Usuarios){
  28. System.out.println(u.getIdade());
  29. }
  30.  
  31.  
  32.  
  33.  
  34.  
  35. }
  36.  
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement