/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package borrame;

/**
 *
 * @author felix
 */
public class Alumno {
    private double calificacion;
    
    static public double PROMEDIO_MINIMO = 6;
    
    public Alumno(double unaCal) {
        calificacion = unaCal;
    }
    
    public boolean estaAdmitido() {
        return calificacion >= PROMEDIO_MINIMO;
    }
    
}
