AndreanJP

Class Screen

Dec 15th, 2016
1,092
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.34 KB | None | 0 0
  1. public class Screen
  2. {
  3.     public void displayMessage( String message )
  4.     {
  5.         System.out.println( message );
  6.     }
  7.     public void displayMessageLine( String message )
  8.     {
  9.         System.out.println( message );
  10.     }
  11.     public void displayDollarAmount( double amount )
  12.     {
  13.         System.out.printf( "$%,.2f", amount );
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment