Java While Loop

while Loop:

The while loop executes as long as the specified condition evaluates to true. The condition is evaluated before the code block executes.


Syntax:

while (condition) { 
  // Code to execute 
}
Basic While Loop
int i=1;
while(i<=4){
System.out.print("Hi "+ i +" ");
i++;
}
System.out.println();
System.out.print("Bye"+i);

Try it yourself


Nested While Loop
int i = 1;
while(i<=4){
System.out.println("Hi"+ i);
int j=1;
while(j<=3) {
System.out.print("Hello "+j+" ");
j++;
}
i++;
}
System.out.println();
System.out.print("Bye"+i);

Try it yourself


Whereisstuff is simple learing platform for beginer to advance level to improve there skills in technologies.we will provide all material free of cost.you can write a code in runkit workspace and we provide some extrac features also, you agree to have read and accepted our terms of use, cookie and privacy policy.
© Copyright 2024 www.whereisstuff.com. All rights reserved. Developed by whereisstuff Tech.