Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

private void

calBTNActionPerformed(java.awt.event.ActionEvent
evt) {
double
amt=130,noofdays=Double.parseDouble(noofdaysTF.ge
tText());
if(maleRB.isSelected())
amt=150;
if(skilledCB.isSelected())
amt+=50;
amtTF.setText("Rs. "+(amt*noofdays));
}
private void
clearBTNActionPerformed(java.awt.event.ActionEvent
evt) {
nameTF.setText(null);
noofdaysTF.setText(null);
amtTF.setText(null);
maleRB.setSelected(true);
skilledCB.setSelected(false);
}
Output

You might also like