class WS5bQ2
{
public static void main(String args[])
{
int grade[][] = new int[1][50];
for(int row=0; row<grade.length; row++)//loop to assingn values to the array
{
for(int col=0; col<50; col++)//controls the col
{
grade[row][col] = (int)(Math.random()*10000000%1000+1);
}
}
for(int row=0; row<grade.length; row++)//output array to screen
{
for(int col=0; col<50; col++)
{
System.out.print(grade[row][col]+" ");
}
}
System.out.println("");
for(int row =0; row<grade.length; row++)//nested loop to check for matching grades
{
for(int col = 1; col <grade.length; col++)
{
int i = 0;
if(grade[row][i] == grade[row][col])
{
System.out.println("Stundent "+i+ "= "+grade[row][i]+" Stundent "+col+"= "+grade[row][col]);
}
i++;
}//close second loop
}//close 1st loop
}//close main
}//close class