Adding user input to an ArrayList
843789Apr 7 2009 — edited Apr 8 2009Basically, I have to write a program where:
-I prompt the user for the names of all the courses he/she completed last year.
-I prompt the user for the grades acheived in all the courses.
-Then show the user all the subjects which he/she scored >93% (high achievement award marks) and <70% (needs improvement)
I started off, but then got stuck thinking exactly how I would get the user-inputted data into elements in an ArrayList (need an dynamic array). (We need to use arrays, and I figured that using the ArrayList class would be the best way to write this program).
Any comments as to if I'm even approaching this problem the right way will be appreciated.