Im trying to make a marks storing program for my personal use, but i find problems when deciding how to store the marks. What i need is tsomething like this
Subject 1
----1(semesters)
------mark1
------mark2
------mark3
----2
------mark1
------mark2
----3
------mark1
I was thinking of using a HashMap or a local database, but the problem starts when some of the marks inside the same semester can be equal and i need to be able to delete or edit one of them.
BTW i feel more confident with java than other languages