CJCoding With Joseph
15per day

Find Minimum in an Integer Array

An integer array contains {12, 5, 19, 3, 8}. Loop through the array and print the smallest value on its own line.

Do not sort the array. Track the current minimum as you iterate.

Expected Output:

3
Topics:
Arrays
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.