java for in loop code example

Example 1: java for loop

for(int i = 0; i < 10; i++)
{
  //do something
  
  //NOTE: the integer name does not need to be i, and the loop
  //doesn't need to start at 0. In addition, the 10 can be replaced
  //with any value. In this case, the loop will run 10 times.
  //Finally, the incrementation of i can be any value, in this case,
  //i increments by one. To increment by 2, for example, you would
  //use "i += 2", or "i = i+2"
}

Example 2: Java for loop

int values[] = {1,2,3,4};
for(int i = 0; i < values.length; i++)
{
 	System.out.println(values[i]); 
}

Example 3: java for

String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
for (String i : cars) {
  System.out.println(i);
}

Example 4: for loop in java

// for loop in java
public class ForLoop
{
   public static void main(String[] args)
   {
      for(int x = 1; x <= 5; x++)
      {
         System.out.println(x);
      }
   }
}

Example 5: for loop java

for (int i = 0; i < 5; i++) {
  System.out.println(i);
}

Example 6: for() in java

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
}
}

Tags:

Cpp Example