Ejemplo De Programacion
Enviado por AlanSurque • 10 de Julio de 2013 • 308 Palabras (2 Páginas) • 386 Visitas
Ejercicio no 1:
package xx;
public class Main {
public static void main(String[] args) {
newa().show();
}
}
package xx;
public class a extends javax.swing.JFrame {
/** Creates new form uno */
public a() {
initComponents();
}
private void cmdaleatorioActionPerformed(java.awt.event.ActionEvent evt) {
int n=1+(int)(Math.random()*5);
lbln.setText(String.valueOf(n));
}
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new uno().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JButton cmdaleatorio;
private javax.swing.JLabel lbln;
// End of variables declaration
}
...