CJCoding With Joseph

Product of Array Elements (for-each)

The array nums contains {1, 2, 3, 4}. Use a for-each loop to multiply all the elements together and print:

Product: 24

Start your product variable at 1 (not 0).

Expected Output:

Product: 24
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.