CJCoding With Joseph

Count Elements in a Range

The array {5, 12, 8, 20, 3, 15, 10} is given, along with bounds low = 8 and high = 15. Count how many elements fall within [low, high] inclusive and print the count:

4

The matching elements are 12, 8, 15, and 10.

Expected Output:

4
Topics:
Arrays
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.