#include "Estudiante.h"

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

Estudiante ::Estudiante(const int e,
		  const char *n,
		  const char *a,
		  const int c,
		  const char s,
		  const char *na,
		  const float *no){
	int i;
	this->asignarEdad(e);
	this->asignarNombre(n);
	this->asignarApellido(a);
	this->asignarCedula(c);
	this->asignarSexo(s);
	this->asignarNacionalidad(na);
	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;
}

void Estudiante :: Mostrar(){
	int i;
	cout << this->Nombre() << endl;
	for(i=0; i<4; i++)
		cout << notas[i] << endl;
}

