High scores
score = [[5, "Bert", 214], [4, "Sally", 311], [3, "Fred", 387], [2, "Booth", 402], [1, "Mike", 414]]
The above code will create a multi-dimensional array to store high scores. Your job is to allow new scores to be added.
| The code must -Only ever have 5 scores Scores should be listed in descending order in the array. When a new score is added it should shift the scores lower than it up one position. Allow the user to enter a new score and name. You should NOT use list functions!! |
![]() |
You need to log in or create an account to submit code!












