/ Flow_Control / while_loop.java
while_loop.java
1 public class while_loop { 2 public static void main(String[] args) { 3 int a = 10; 4 while(a < 20){ 5 System.out.println(a + " is lesser than 20"); 6 a++; 7 } 8 } 9 }
1 public class while_loop { 2 public static void main(String[] args) { 3 int a = 10; 4 while(a < 20){ 5 System.out.println(a + " is lesser than 20"); 6 a++; 7 } 8 } 9 }