/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author felix
 */

public class Alumno {
    double nota;
    public static double notaCorte=6.0;
    
    public Alumno(double nota) {
        this.nota=nota;
    }
    
    boolean estaAdmitido(){
        return (nota>=notaCorte);
    }
} 
