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

金融证券系统

开发平台:

Java

  1. // ATMCaseStudy.java
  2. // Driver program for the ATM case study
  3. public class ATMCaseStudy
  4. {
  5.    // main method creates and runs the ATM
  6.    public static void main( String[] args )
  7.    {
  8.       ATM theATM = new ATM();    
  9.       theATM.run();
  10.    } // end main
  11. } // end class ATMCaseStudy 
  12. /**************************************************************************
  13.  * (C) Copyright 1992-2005 by Deitel & Associates, Inc. and               *
  14.  * Pearson Education, Inc. All Rights Reserved.                           *
  15.  *                                                                        *
  16.  * DISCLAIMER: The authors and publisher of this book have used their     *
  17.  * best efforts in preparing the book. These efforts include the          *
  18.  * development, research, and testing of the theories and programs        *
  19.  * to determine their effectiveness. The authors and publisher make       *
  20.  * no warranty of any kind, expressed or implied, with regard to these    *
  21.  * programs or to the documentation contained in these books. The authors *
  22.  * and publisher shall not be liable in any event for incidental or       *
  23.  * consequential damages in connection with, or arising out of, the       *
  24.  * furnishing, performance, or use of these programs.                     *
  25.  *************************************************************************/