fro statement java code example
Example 1: java for
String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
for (String i : cars) {
System.out.println(i);
}
Example 2: for loop java
for(/*index declaration*/int i=0; /*runs as long as this is true*/
i<=5; /*change number at end of loop*/i++){
doStuff();
}