insira seu código aqui
public class Funcionario { protected String nome; protected String cpf; protected double salario;
public double getBonificacao() { return this.salario *0.10; } }
public class Gerente extends Funcionario{
int senha; int numeroDeFuncionarioGerenciados;
public char[] getSalario;
public void setNome(String string) { // TODO Auto-generated method stub } public void setSenha(int i) { // TODO Auto-generated method stub } public void setSalario(double d) { // TODO Auto-generated method stub
}
public double getBonificacao() { //return super.getBonificacao()+1000; //returno this.salario *0.10; return this.salario; }
public boolean autentica(int senha) { if (this.senha==senha){ System.out.println("Acesso Permitido"); return true; }else { System.out.println("Acesso Negado"); return false; } }}
public class TestaGerente { public static void main(String[] args) { Gerente gerente = new Gerente(); gerente.setNome("João da Silva"); gerente.setSenha(4231); gerente.setSalario(5000.0); System.out.println(gerente.getSalario); System.out.println(gerente.getBonificacao()); } }