CJCoding With Joseph
15per day

Count Zeros in an Array

Read an integer n, then read n integers. Count how many of the values are exactly 0 and print the count. Use a loop to read the numbers and an if statement to check if each value is zero.

Expected Output:

3
Topics:
ArraysLoops
๐Ÿ“ฅ Auto-Input:
7\n0\n5\n0\n2\n0\n9\n1\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.