Componentes Básicos
Componentes Básicos
Componentes Básicos
Migrar
Botón Generar:
Botón Mostrar
import java.text.*;
Añada el siguiente código para los eventos que se
indiquen:
Evento actionPerformed del botón Calcular
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
int ope;
NumberFormat nf=NumberFormat.getInstance();
nf.setMaximumFractionDigits(2);
double n1,n2, result;
result=0.0;
n1=Double.valueOf(jTextField1.getText()).doubleValue();
n2=Double.valueOf(jTextField2.getText()).doubleValue();
ope=jComboBox1.getSelectedIndex();
if(ope==0)
result=n1+n2;
if(ope==1)
result=n1-n2;
if(ope==2)
result=n1*n2;
if(ope==3)
result=n1/n2;
jTextField3.setText(nf.format(result));
}
Evento actionPerformed del botón Limpiar
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
jTextField1.setText("");
jTextField2.setText("");
jTextField3.setText("");
jTextField1.requestFocus();
}