Home / Programs / While Loop Example, print 10 to 19
Programming Example

While Loop Example, print 10 to 19

👁 1,683 Views
💻 Practical Program
📘 Step by Step Learning
While Loop Example, print 10 to 19

Program Code

 public class LoopExample {

   public static void main(String args[])
   {
      int x = 10;

      while( x < 20 )
      {
         System.out.print("value of x : " + 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
Press any key to continue . . .

How to learn from this program

First read the algorithm, then study the program code line by line. After that, compare the code with the output and finally go through the explanation. This approach helps learners understand both the logic and the implementation properly.