int を int[] に変換できないというエラーが表示されます。
//Create array
int [][] studentResults = new int [numStudents][numExams];
//Fill 1st dimension with Student numbers 1 through numStudents
for (int count = 0; count < numStudents; count++)
studentResults[count][] = count + 1;