Connect to GitHub to push and pull your project files to a repository.
On the page that opens, create a token with repo scope, copy it, then paste it below.
Paste the personal access token you created on GitHub with repo scope.
Click Refresh to load commit history
Exercise Info
Goals
To do proper array indexing
To use loops in concert with arrays
To use logic inside of a loop
To declare accumulator variables outside of loops that are used in loops, but whose state persists beyond the loop
Instructions
Modify the countZeroes method in ArrayZeroes.java file to count the number of zeroes in an array (this is based on exercise 13 on page 266 of the Horstmann book Java for Everyone).