Realizar el siguiente formulario en Netbeans
Cambiamos de nombre de la Variable(JTextField1) por txtnum1Cambiamos de nombre de la Variable(JTextField2) por txtnum2
Cambiamos de nombre de la Variable(jButton1) por btnnuevoCambiamos de nombre de la Variable(jButton2) por btnmostrarCambiamos de nombre de la Variable(jButton3) por btnsalir
Cambiamos de nombre de la Variable(jLabel4) por lblrpta
CODIGOS DE LOS BOTONES
CODIGO BOTON NUEVO
CODIGO BOTON NUEVO
txtnum1.setText("");
txtnum2.setText("");
CODIGO BOTON MOSTRAR
txtnum2.setText("");
CODIGO BOTON MOSTRAR
int num1,num2,mcd=0,min;
num1 = Integer.parseInt(txtnum1.getText().trim());
num2 = Integer.parseInt(txtnum2.getText().trim());
if(num1 < num2){
min = num1;
}else{
min = num2;
}
for(int i=1;i<=min;i++){
if(num1 % i == 0 && num2 % i == 0){
mcd = i;
}
}
lblrpta.setText(" El MCD de "+num1+ " y " +num2+ " es: "+mcd);
num1 = Integer.parseInt(txtnum1.getText().trim());
num2 = Integer.parseInt(txtnum2.getText().trim());
if(num1 < num2){
min = num1;
}else{
min = num2;
}
for(int i=1;i<=min;i++){
if(num1 % i == 0 && num2 % i == 0){
mcd = i;
}
}
lblrpta.setText(" El MCD de "+num1+ " y " +num2+ " es: "+mcd);
CÓDIGO BOTON SALIR
System.exit(0);
RESULTADO FINAL
RESULTADO FINAL
muchisimas gracias ingeniero por tan exelente aporte....... se le quiere mijo. Y por favor siga compartiendo esos trabajos tan buenos, gracias.
ResponderEliminarHola me gustaria saber como sacaria el MCM de dos numeros enteros en clase MCD
ResponderEliminarGracias me ayudo mucho que Dios le Bendiga !!
ResponderEliminargracias x el codigo..!!
ResponderEliminar¿Es correcto esto?
ResponderEliminarEste comentario ha sido eliminado por el autor.
ResponderEliminarComo puedo realizarlo que me muestre la descomposicion factorial?
ResponderEliminar