Hello,
I'm trying to create a program for a multiple choice test. I have 12 students, and I have the answers, all I need is to learn which student chose how many correct and wrong answers and left how many empty.
All I need is something like this
Students Correct Wrong Empty (0 is empty, 1 is A , 2 is B and so forth)
1 5 4 3
2 3 8 1
3 8 1 3
4 2
5
6
7
8
9
10
11
12
int[][]answers = {{3,4,2,5,0,2,1,3,2,4},{0,0,2,1,5,4,1,2,3,1},{3,3,2,5,4,1,2,5,0,3},{3,4,4,5,3,5,4,0,3,1},{3,4,2,5,4,3,1,2,3,2},{1,3,4,3,2,5,4,2,1,0},{2,0,3,4,2,0,1,5,4,2},{3,4,5,3,3,2,4,1,2,5},{3,5,3,5,1,2,3,4,5,6,0},{3,4,5,3,4,3,0,0,0,0},{3,4,5,2,1,2,3,2,5,3},{3,2,1,5,5,3,2,5,2,4}};
int[] correctA = {3,4,2,5,4,3,1,2,3,1};
int[] students = {1,2,3,4,5,6,7,8,9,10,11,12};