Menu
×
×
Correct!
Exercise:Loop through the items in the
String[] cars = {"Volvo", "BMW", "Ford"};
@(3) (String i : @(4)) {
System.out.println(i);
}
String[] cars = {"Volvo", "BMW", "Ford"};
for (String i : cars) {
System.out.println(i);
}
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 59 exercises.
Are you sure you want to continue?