farizmpr

Untitled

Oct 19th, 2017
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. public class Screen
  2. {
  3.     public void displayMessage(String message)
  4.     {
  5.         System.out.print(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. }
Add Comment
Please, Sign In to add comment