document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. private void btnHitungActionPerformed(java.awt.event.ActionEvent evt) {                                          
  2.         // TODO add your handling code here:
  3.         harga = Integer.parseInt(txtSatuan.getText());
  4.         jumlahBeli = Integer.parseInt(txtJumlah.getText());
  5.         Subtotal = harga * jumlahBeli;
  6.          if(jumlahBeli>=3){
  7.             diskon=Subtotal*0.2;
  8.             }else{
  9.             diskon=0;
  10.             }
  11.          
  12.          txtDiskon.setText(" "+diskon);
  13.        
  14.         totalBayar = Subtotal - diskon;
  15.         txtBayar.setText(" "+totalBayar);  
  16.     }
');