I am getting an error cannot convert int to int[], can anyone help please?
//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;