CJCoding With Joseph

Maximum in Array (for)

The array nums contains {3, 9, 2, 7, 5}. Use a for loop to find the largest value and print:

Max: 9

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

Expected Output:

Max: 9
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.