Guest User

Untitled

a guest
Sep 17th, 2020
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. package teste;
  2.  
  3. import javax.swing.JOptionPane;
  4.  
  5. public class AddColaborador {
  6.  
  7. static Integer idade;
  8. static String nome;
  9. static Colaborador co = new Colaborador();
  10.  
  11. public void dados() {
  12. co = new Colaborador();
  13. nome = JOptionPane.showInputDialog("Qual seu nome?");
  14. idade = Integer.parseInt(JOptionPane.showInputDialog("Qual sua idade?"));
  15. co.setNome(nome);
  16. co.setIdade(idade);
  17. co.addColab();
  18. }
  19.  
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment