Answers for "for lopp java"

12

java for

String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
for (String i : cars) {
  System.out.println(i);
}
Posted by: Guest on March-11-2020
4

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();

}
Posted by: Guest on May-04-2020
0

for loop java

public class ForLoop {
  public static void main(String[] args) {
    for (int i = 0; i < 5; i++) {
      // Will do this 5 times.
      System.out.println("Iteration #: " + i);
    }
  }
}
Posted by: Guest on September-09-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language