using System.Collections.Generic;
using System.Text;
namespace practica02
{
class Program
{
static void Main(string[] args)
{
alumno[] al=new alumno[20];
for(int i=0;i<20;i++)
{
al[i]=new alumno();
}
al[0].ingresenota(14);
al[0].mostrar();
al[1].ingresenota(15);
al[1].mostrar();
al[2].ingresenota(16);
al[2].mostrar();
al[3].ingresenota(17);
al[3].mostrar();
al[4].ingresenota(18);
al[4].mostrar();
al[5].ingresenota(19);
al[5].mostrar();
al[6].ingresenota(20);
al[6].mostrar();
al[7].ingresenota(16);
al[7].mostrar();
}
}
class alumno
{
int nota;
int promedio;
public alumno()
{
this.nota = 0;
this.promedio = 0;
}
public alumno(int not)
{
this.nota = not;
}
public void ingresenota(int not)
{
this.nota=not;
}
public void mostrar()
{
System.Console.WriteLine(this.nota);
System.Console.ReadLine();
}
}
}
No hay comentarios:
Publicar un comentario