Advertisement
Ramdan51-062

Screen

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