4. TALLER DE PROGRAMACIÓN
PROGRAMA QUE DETERMINA SI UN ALUMNO DEBE PRESENTAR LAS PRUEBAS SABER PRO
1. Código Fuente (Netbeans)
package paqSemestre;
import javax.swing.JOptionPane;
/**
*
* @author FAMILIA ARIZA
*/
public class jSemestre extends javax.swing.JFrame {
/**
* Creates new form jSemestre
*/
public jSemestre() {
initComponents();
JOptionPane.showMessageDialog(null, "BIENVENIDO ALUMNO");
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
jLbl = new javax.swing.JLabel();
jBtnEnviar = new javax.swing.JButton();
jTxt = new javax.swing.JTextField();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jLbl.setText("INGRESE EL SEMESTRE QUE ESTA CURSANDO ACTUALEMENTE");
jBtnEnviar.setText("ENVIAR");
jBtnEnviar.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jBtnEnviarActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addGap(0, 53, Short.MAX_VALUE)
.addComponent(jLbl)
.addGap(38, 38, 38))
.addGroup(layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(155, 155, 155)
.addComponent(jTxt, javax.swing.GroupLayout.PREFERRED_SIZE, 71, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(layout.createSequentialGroup()
.addGap(146, 146, 146)
.addComponent(jBtnEnviar, javax.swing.GroupLayout.PREFERRED_SIZE, 95, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addGap(48, 48, 48)
.addComponent(jLbl, javax.swing.GroupLayout.PREFERRED_SIZE, 25, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(29, 29, 29)
.addComponent(jTxt, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(34, 34, 34)
.addComponent(jBtnEnviar)
.addContainerGap(121, Short.MAX_VALUE))
);
pack();
}// </editor-fold>
private void jBtnEnviarActionPerformed(java.awt.event.ActionEvent evt) {
Integer num=0;
num=Integer.parseInt(jTxt.getText());
if(num>5)
{
JOptionPane.showMessageDialog(null, "PREPARATE PARA LAS PRUEBAS SABER PRO");
}
else
{
JOptionPane.showMessageDialog(null, "ESFUERZATE POR SUPERARTE");
}
// TODO add your handling code here:
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(jSemestre.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(jSemestre.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(jSemestre.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(jSemestre.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new jSemestre().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JButton jBtnEnviar;
private javax.swing.JLabel jLbl;
private javax.swing.JTextField jTxt;
// End of variables declaration
}
2. Comprimido del programa
No hay comentarios:
Publicar un comentario