Guest User

Untitled

a guest
Jul 23rd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. public class Teste {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. Funcionario fun = new Funcionario(1, 20, "Lucas", 240, 10);
  6. System.out.println("Salario do Funcionario " + fun.nome + ": " + fun.calculaSalario());
  7.  
  8. Chefe chefe = new Chefe(2, 35, "Maria", 280, 20, 230);
  9. System.out.println("Salario do Chefe " + chefe.nome + ": " + chefe.calculaSalario());
  10.  
  11. Presidente pres = new Presidente(2, 55, "Marcelo", 400, 30, 300, 800);
  12. System.out.println("Salario do Presidente " + pres.nome + ": " + pres.calculaSalario());
  13.  
  14. Funcionario f = new Chefe(2, 30, "Rodrigo", 300, 20, 300);
  15. System.out.println("Salario: " + f.calculaSalario());
  16.  
  17. }
  18. }
Add Comment
Please, Sign In to add comment