I've got an array set up for the frame scores and to accumulate for the running total, but I'm having a problem with something quite simple- outputting the frame numbers and score. I'm trying to find an eloquent way to do it within the for loop, but I'm lost..
game is not an array, it's just a placeholder for the accumulating scores.. Do i need to make a game array so it could actually store each running total number?
by eloquent I mean I'm trying to keep everything contained to just one for loop if possible.. If not, I'm not sure how the accumulator would work
No, you don't need a game array. I've misunderstood your question.
I think that if you change score[0] in score[i] in line 51, you'll have a better result :)
Ciao.