Answers for "for loop simple definition in java"

5

how to make a basic for loop in java

package myForLoops

public class forLoop {
	public static void main(String[] args) {
    
		for (int i = j; i<=k; i++)  
        //variable "i" is the value checked in loop
        //variable j is the starting value for i
        //variable k is where we want the loop to end
        //i++ adds 1 to i each iteration of the loop until i == k
		{
        	//displays "i"
			System.out.println(i);
		}
        
        //this is a for loop in use
        for (int i = 1; i<=10; i++) {
        	System.out.println(i); //i will be displayed 10 times being 
            //increased by 1 every time
        }
        
        for (char ch = 'k'; ch<= 'q'; ch++) {
        	//this is a for loop with characters, it will
            //display every character from 'k' to 'q'
        	System.out.println(ch);
        }
        for (int i = 10; i>=1; i++) {
        	//this loop will be infinitely run since i 
            //will always be greater than 1, we do not want this
        	System.out.println(i);
        }
        for (int i = 10; i>=1; i--) { 
        	//this is the correct way of doing the previous code 
            //(if you do not want an infinite for loop)
        	System.out.println(i);
        }
	}
}
Posted by: Guest on June-15-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