Keypad.java
上传用户:ljt780218
上传日期:2022-07-30
资源大小:110k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Java

  1. // Keypad.java
  2. // Represents the keypad of the ATM
  3. import java.util.Scanner; // program uses Scanner to obtain user input
  4. public class Keypad
  5. {
  6.    private Scanner input; // reads data from the command line
  7.                          
  8.    // no-argument constructor initializes the Scanner
  9.    public Keypad()
  10.    {
  11.       input = new Scanner( System.in );    
  12.    } // end no-argument Keypad constructor
  13.    // return an integer value entered by user 
  14.    public int getInput()
  15.    {
  16.       return input.nextInt(); // we assume that user enters an integer  
  17.    } // end method getInput
  18. } // end class Keypad  
  19. /**************************************************************************
  20.  * (C) Copyright 1992-2005 by Deitel & Associates, Inc. and               *
  21.  * Pearson Education, Inc. All Rights Reserved.                           *
  22.  *                                                                        *
  23.  * DISCLAIMER: The authors and publisher of this book have used their     *
  24.  * best efforts in preparing the book. These efforts include the          *
  25.  * development, research, and testing of the theories and programs        *
  26.  * to determine their effectiveness. The authors and publisher make       *
  27.  * no warranty of any kind, expressed or implied, with regard to these    *
  28.  * programs or to the documentation contained in these books. The authors *
  29.  * and publisher shall not be liable in any event for incidental or       *
  30.  * consequential damages in connection with, or arising out of, the       *
  31.  * furnishing, performance, or use of these programs.                     *
  32.  *************************************************************************/