Answers for "java for lop"

4

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);
}
Posted by: Guest on August-11-2020
2

java for loop

for(int i = 0; i < {value}; i++)
{
 
}
Posted by: Guest on January-16-2021
0

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");
        }
    }
}
Posted by: Guest on February-11-2021
0

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
}
}
Posted by: Guest on February-26-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language