Source of TestHelloWithPause.java


  1: //TestHelloWithPause.java
  2: 
  3: import java.util.Scanner;
  4: 
  5: public class TestHelloWithPause
  6: {
  7:     public static void main(String[] args)
  8:     {
  9:         Scanner keyboard = new Scanner(System.in);
 10: 
 11:         System.out.println("\nHello, my name is Firstname Lastname.");
 12:         System.out.print("Press Enter to continue ... ");
 13:         keyboard.nextLine();
 14: 
 15:         System.out.print("\nHow many hours do you study per week? ");
 16:         int numberOfHours = keyboard.nextInt();
 17:         keyboard.nextLine();
 18: 
 19:         System.out.println("Do you think maybe you should study "
 20:             + 2 * numberOfHours + " hours per week?!!");
 21:         System.out.print("Press Enter to continue ... ");
 22:         keyboard.nextLine();
 23:     }
 24: }