document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import java.util.Date;
  2. import java.text.DateFormat;
  3. import java.text.SimpleDateFormat;
  4. public class Nota
  5. {
  6. int balance;
  7. int price;
  8. private Date date;
  9. private DateFormat dateFormat;
  10. public Nota(int Balance, int Price)
  11. {
  12. balance = Balance;
  13. price = Price;
  14. dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
  15. date = new Date();
  16. }
  17. public void print()
  18. {
  19. System.out.println("###############################################");
  20. System.out.println("##Perusahaan A Toll Gate");
  21. System.out.println("##Tanggal Transaksi: " + dateFormat.format(date));
  22. System.out.println("##Biaya Tol: " + price);
  23. System.out.println("##Sisa Saldo: " + balance);
  24. System.out.println("###############################################");
  25.  
  26. }
  27. }
');