public class Aluno {
private String nome;
private double nota;
public Aluno(String nome, double nota) {
this.nome = nome;
this.nota = nota;
}
public boolean verificarAprovacao() {
return this.nota >= 6;
}
public String getNome() {
return nome;
}
public double getNota() {
return nota;
}
}
To embed this program on your website, copy the following code and paste it into your website's HTML: