Programación JAVA: escriba un subprograma, lea la longitud del lado de un rectángulo y luego ingrese un rectángulo hueco
importar java.awt.*;
importar javax.swing.*;
la clase pública drawRech extiende JApplet {
public void paint(Gráficos g){
super.paint(g);
this.setBackground(Color.WHITE);
Ancho de cadena = JOptionPane.showInputDialog( "Ingrese el ancho");
String height = JOptionPane.showInputDialog("Ingrese el alto");
int wid = 0;
int heig = 0;
prueba{
wid = Integer.parseInt(ancho);
heig = Integer.parseInt(alto);
}
catch(NumberFormatException e){
JOptionPane.showMessageDialog(null, "Entrada incorrecta");
}
g. drawRect(100, 100, wid, heig);
}
}
Se agregó manejo de excepciones y la prueba fue exitosa