Q:

Java example for while loop demonstration

belongs to collection: Java Basic Programs

0

Java example for while loop demonstration

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

while Loop Example in Java

Programs 1) Print your name 10 times.

//Java program to print name 10 times using while loop
 
public class PrintNames
{
    public static void main(String args[]){
         
        int loop; //loop counter declaration
        final String name="Mike"; //name as constant
         
        loop=1; //initialization of loop counter
        while(loop<=10){
            System.out.println(name);
            loop++; //increment
        }
         
    }
}

Output

    Mike
    Mike
    Mike
    Mike
    Mike
    Mike
    Mike
    Mike
    Mike
    Mike

Programs 2) Print numbers from 1 to N.

//Java program to print numbers from 1 to N
 
import java.util.Scanner;
 
public class PrintNumbers
{
    public static void main(String args[]){
        int loop; //declaration of loop counter
        int N; 
         
        Scanner SC=new Scanner(System.in);
         
        System.out.print("Enter value of N: ");
        N=SC.nextInt();
         
        loop=1;
        while(loop<=N){
            System.out.print(loop +" ");
            loop++;
        }
         
    }
}

Output

Enter value of N: 50
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 
16 17 18 19 20 21 22 23 24 25 26 27 
28 29 30 31 32 33 34 35 36 37 38 39 
40 41 42 43 44 45 46 47 48 49 50 

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java example for do while loop demonstration... >>
<< Java program to demonstrate example of this keywor...