java for
String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
for (String i : cars) {
System.out.println(i);
}
java for
String[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
for (String i : cars) {
System.out.println(i);
}
how to make a loop in java
// Starting on 0:
for(int i = 0; i < 5; i++) {
System.out.println(i + 1);
}
// Starting on 1:
for(int i = 1; i <= 5; i++) {
System.out.println(i);
}
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);
}
}
}
java for loop
class for_loop
{
public static void main(String args[])
{
for(int i=0;i<10;i++)
{
System.out.print(" " + i);
}
/*
Output: 0 1 2 3 4 5 6 7 8 9
*/
}
}
java for loop
// Example of a for loop in java that will iterate the number of times entered by the user
import java.util.Scanner; // import Scanner class
public class grepperjava {
public static void main(String[] ARGS)
{
System.out.println("\nPlease enter a number, and the loop will iterate input times.");
int input;
Scanner var = new Scanner(System.in); // Create scanner object, so user-input may be read
input = var.nextInt();
var.close();
for(int i = 0; i < input; i++)
{
System.out.println("This will print " + input + " times");
}
}
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us