document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class pertamina {
  2. private String jenisBBM;
  3. private double hargaBBM;
  4. private double totalliter;
  5. private double hargatotal;
  6. private double uangbayar;
  7. private double kembalian;
  8.  
  9. public void setBBM(String jenisBBM, double hargaBBM){
  10. this.jenisBBM = jenisBBM;
  11. this.hargaBBM = hargaBBM;
  12. }
  13. public void setTotalliter(double totalliter, double uangbayar){
  14. this.totalliter = totalliter;
  15. this.uangbayar = uangbayar;
  16. this.hargatotal = totalliter*hargaBBM;
  17. }
  18. public void setKembalian(){
  19. if(uangbayar < hargatotal){
  20. System.out.println("Maaf uang anda tidak cukup");
  21. }
  22. else{
  23. this.kembalian = uangbayar - hargatotal;
  24. }
  25. }
  26. public void cetak(){
  27. System.out.println("--------------------Nota Transaksi-------------------");
  28. System.out.println("Jenis BBM yang dibeli adalah : "+jenisBBM);
  29. System.out.println("Harga perliternya adalah Rp."+hargaBBM+".00");
  30. System.out.println("Total liter yang anda beli : "+totalliter+" liter");
  31. System.out.println("Harga total pembayaran : Rp."+hargatotal+".00");
  32. System.out.println("Uang Pembayaran : Rp."+uangbayar+".00");
  33. System.out.println("Uang Kembali : Rp."+kembalian+".00");
  34. System.out.println("--------------------Terima Kasih--------------------");
  35. }
  36. }
');