I have just started taking java course at the university and I would like to link two arrays.
I have created a 1D arrays called, StudentID[] this will store the student ID.
I have created another 2D array called SubjTaken[] [] which will contain subject, credit hour, grade letter.
Now, I want to link those two arrays. For example,
Inpute would be:
ENTER STUDENT ID:
123456
ENTER SUBJECTS TAKEN:
MATH101 4 A
PHYS201 3 B+
Then it will store them in both arrays. And will be able to call it later. For example:
ENTER STUDENT ID:
123456
THE SUBJECT THAT YOU TOOK ARE:
MATH101 4 A
PHYS201 3 B+
My problem is: I dont know how to create a link with them. If I have 5 students I will need to have 5 2d arrays and I will need to link each one of them. I thought about array inside an array. Looking for help.