#include "Estudiante.h"

Estudiante :: Estudiante(){
	int i;
	for(i=0; i<4; i++)
		notas[i] = 0;
}

Estudiante :: ~Estudiante(){
}

void Estudiante :: mostrarNotas(){
	int i;
	for(i=0; i<4; i++)
		cout << notas[i] << endl;
}

