LexarG56

Generation

generate functionWed, 19 Jul 2023

En el actionperformed del boton eliminar, que se pueda eliminar un dato registrado tipo int

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { try { int numero = Integer.parseInt(JOptionPane.showInputDialog("Ingrese numero de registro")); if (numero > 0 && numero <= reg) { int posicion = numero - 1; registros[posicion] = null; JOptionPane.showMessageDialog(null, "Se elimino el registro numero: " + numero); } else { JOptionPane.showMessageDialog(null, "Numero de registro invalido"); } } catch (java.lang.NumberFormatException e) { JOptionPane.showMessageDialog(null, "El formato de entrada es incorrecto"); } }

Questions about programming?Chat with your personal AI assistant