Tuesday, April 11, 2017

Syntax For loop in java

Syntax

The syntax of a for loop is −
for(initialization; Boolean_expression; update) {
   // Statements
}


Example

Following is an example code of the for loop in Java.
public class Test {

   public static void main(String args[]) {

      for(int x = 10; x < 20; x = x + 1) {
         System.out.print("value of x : " + x );
         System.out.print("\n");
      }
   }
}

Output

value of x : 10
value of x : 11
value of x : 12
value of x : 13
value of x : 14
value of x : 15
value of x : 16
value of x : 17
value of x : 18
value of x : 19

Source :
https://www.tutorialspoint.com/java/java_for_loop.htm
https://en.wikipedia.org/wiki/For_loop

0 komentar:

Post a Comment