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)); } }