Advertisement
rmword

Untitled

Oct 23rd, 2017
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 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. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement