yoshiputri

Untitled

Oct 19th, 2017
403
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.print(message);
  6.     }
  7.    
  8.     public void displayMessageLine(String message)
  9.     {
  10.         System.out.println(message);
  11.     }
  12.    
  13.     public void displayRupiahAmount(double amount)
  14.     {
  15.         System.out.printf("Rp%,.2f", amount);
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment