Skip to content

Instantly share code, notes, and snippets.

View davidpn11's full-sized avatar

David Pena Nascimento davidpn11

View GitHub Profile
public class Pessoa {
private String nome;
private String cpf;
private int idade;
public Pessoa(String nome, String cpf, int idade) {
this.nome = nome;
this.cpf = cpf;
this.idade = idade;
}
class AlunoDeComputacao extends Aluno implements Programar{
private String linguagemFavorita;
public AlunoDeComputacao(String nome, String linguagemFavorita) {
super(nome);
this.linguagemFavorita = linguagemFavorita;
}
@Override
public void estudar(){