You have already completed these exercises!
Do you want to take them again?
You completed the JAVA For-Each Loops Exercises from W3Schools.com
Share on:
What is the output of the following code?int[] myNumbers = {1, 2, 3, 4, 5};for (int i : myNumbers) { System.out.println(i);}
int[] myNumbers = {1, 2, 3, 4, 5};for (int i : myNumbers) { System.out.println(i);}