Source of WhileDemo.java


  1: 
  2: import java.util.*;
  3: 
  4: public class WhileDemo
  5: {
  6:     public static void main(String[] args)
  7:     {
  8:         int count, number;
  9:         System.out.println("Enter a number");
 10:         Scanner keyboard = new Scanner(System.in);
 11:         number = keyboard.nextInt( );
 12:         count = 1;
 13:         while (count <= number)
 14:         {
 15:             System.out.print(count + ", ");
 16:             count++;
 17:         }
 18:         System.out.println( );
 19:         System.out.println("Buckle my shoe.");
 20:     }
 21: }