package alumnos.notas;
import javax.swing.JOptionPane;
public class AlumnosNotas {
public static void main
(String[] args
) { int
x,y,
a=0,b=0,
n[]= new int[5];
nota,
for(x=0;x<3;x++){
alumno
[x
]=
JOptionPane.
showInputDialog(null,
"Ingrese nombre del estudiante"); for(y=0;y<5;y++){
nota=
JOptionPane.
showInputDialog(null,
"Ingrese nota para "+alumno
[x
]); }
}
while(a<3){
while(b<5){
b++;
}
a++;
}
}
}