Recent content by CABradfish

  1. C

    C/C++ Solving the Loop Puzzle: Shifting Old Scores to New Scores

    So in the end the student part of the code should look like this for all our java users out there: for (i = 0; i < SCORES_SIZE - 1; i++) { newScores[i] = oldScores[i + 1]; } newScores[SCORES_SIZE - 1] = oldScores[0];
Back
Top