CJCoding With Joseph

Minimum in Array (for)

The array nums contains {8, 3, 6, 1, 9}. Use a for loop to find the smallest value and print:

Min: 1

Start with the first element as the current min and compare each other element to it.

Expected Output:

Min: 1
Topics:
Loops
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.