Student.java 438 Bytes
Newer Older
willgonzz committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
public class Student{
    public String Nombre;
    public Student(String Nombre){
        this.Nombre=Nombre;
    }
    public int getNotas(Notas a,int b){
        return a.notas[b];
    }
    public static void main(String[] args) {
        Student Juan=new Student("Juan");
        Notas Juann=new Notas();
        Juann.setNotas(0, 5);
        System.out.println("Las notas de "+Juan.Nombre+" es de "+Juan.getNotas(Juann,0));
    } 
}