for loop in java, print 10 to 19

Java Programming Language / Decision Making and Looping in java

1377

Program:

 public class ForLoop {

   public static void main(String args[])
   {
      for(int x = 10; x < 20; x = x + 1)
      {
         System.out.println("value of x : " + x );
      }
   }
}

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
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.