for(int i=0; i<10; i++){ //creates a counting vatiable i set to 0
//as long as i is < 10 (as long the condition is true)
// i is increased by one every cycle
//do some stuff
}
String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
for (String i : cars) {
System.out.println(i);
}
public class name_of_java_app {
public static void main(String[] args) {
int value = 4;
string whatever_value = "whatever_val";
// The value can be whatever you want.
for(int name_of_int; name_of_int < value; name_of_int++) {
System.out.println(whatever_value + name_of_int);
}
// The output will be 0 1 2 3 4 whatever_val
// You can put any data value such as char or short but not boolean
}
}
for(initialization; booleanExpression; update) {
//statements
} //end for loop