document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  private void btnBayarActionPerformed(java.awt.event.ActionEvent evt) {                                        
  2.         // TODO add your handling code here:
  3.         bayar = Double.parseDouble(txtBayar.getText());
  4.         cash1 = Double.parseDouble(txtCash.getText());
  5.        
  6.         sisa = cash1 - bayar;
  7.         sisa1 =Double.toString(sisa);
  8.                 txtSisa.setText("Rp. "+sisa1);
  9.     }
');