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

金融证券系统

开发平台:

Java

  1. // Screen.java
  2. // Represents the screen of the ATM
  3. public class Screen
  4. {
  5.    // displays a message without a carriage return
  6.    public void displayMessage( String message ) 
  7.    {
  8.       System.out.print( message ); 
  9.    } // end method displayMessage
  10.    // display a message with a carriage return
  11.    public void displayMessageLine( String message ) 
  12.    {
  13.       System.out.println( message );   
  14.    } // end method displayMessageLine
  15.    // display a dollar amount
  16.    public void displayDollarAmount( double amount )
  17.    {
  18.       System.out.printf( "$%,.2f", amount );   
  19.    } // end method displayDollarAmount 
  20. } // end class Screen
  21. /**************************************************************************
  22.  * (C) Copyright 1992-2005 by Deitel & Associates, Inc. and               *
  23.  * Pearson Education, Inc. All Rights Reserved.                           *
  24.  *                                                                        *
  25.  * DISCLAIMER: The authors and publisher of this book have used their     *
  26.  * best efforts in preparing the book. These efforts include the          *
  27.  * development, research, and testing of the theories and programs        *
  28.  * to determine their effectiveness. The authors and publisher make       *
  29.  * no warranty of any kind, expressed or implied, with regard to these    *
  30.  * programs or to the documentation contained in these books. The authors *
  31.  * and publisher shall not be liable in any event for incidental or       *
  32.  * consequential damages in connection with, or arising out of, the       *
  33.  * furnishing, performance, or use of these programs.                     *
  34.  *************************************************************************/