The while loop is Java's most fundamental loop statement. It repeats a statement or block while its controlling expression is true.The condition can be any Boolean expression. The body of the loop will be executed as long as the conditional expression is true. When condition becomes false, control passes to the next line of code immediately following the loop.
Syntax:
while(Condition)
{
// body of loop;
// Increment (or) Decrement;
}
This Java program prompts the user to input a number and then prints out all the integers from 1 up to that number using a while loop. Here is a breakdown of the code:
import java.util.Scanner; public class while_loop { public static void main(String args[]) { System.out.println("Enter The Limit : "); Scanner in =new Scanner(System.in); int n=in.nextInt(); int i=1; while(i<=n) { System.out.println(i); i++; } } }
Enter The Limit : 10 1 2 3 4 5 6 7 8 9 10To download raw file Click Here
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions