Findryan

FP_Screen_VM

Dec 25th, 2016
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 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. %f", amount );
  16. }
  17.  
  18. }
Add Comment
Please, Sign In to add comment