Anteriormente he compartido un ejemplo de una calculadora básica usando los cuadros de dialogo en java, la cual es un poco tediosa al momento de realizar las operaciones, pero en post mostrare algo mas grafico, usando lo que se ha explicado en las anteriores entradas: Crear ventanas, Botones, Formularios básicos, JPaneles y arreglos de botones.
El proyecto esta dividido en dos partes, una el cual contiene el método principal, y la otra clase contiene la interfaz, eventos y operaciones realizadas por el ejercicio practico. El programilla realiza las cuatro operaciones básicas de las matemáticas (suma, resta, multiplicación y división), ademas cuenta con el uso de memorias, borrado total (pantalla y memoria) raíz cuadrada, y manejo de decimales. Bueno ya sabiendo que realiza el ejercicio, continuare mostrando el código para la aplicación.
Descargar Código Fuente
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; public class CalculadoraGUI { public static void main(String[] args) { String ax = System.getProperty("os.name"); //variable que toma el nombre del sistema operativo que se tenga instalado if(ax.equals("Windows 7") || ax.equals("Windows")){//si es un sistema windows se aplica el skin que tiene java para windows try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); interfaz w = new interfaz(); // TODO code application logic here } catch (ClassNotFoundException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (InstantiationException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (UnsupportedLookAndFeelException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } } if(ax.equals("Linux")){//si es un sistema linux se aplica el skin que tiene java para linux try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); interfaz w = new interfaz(); // TODO code application logic here } catch (ClassNotFoundException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (InstantiationException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (UnsupportedLookAndFeelException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } } } } |
import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.UIManager; import javax.swing.UnsupportedLookAndFeelException; public class CalculadoraGUI { public static void main(String[] args) { String ax = System.getProperty("os.name"); //variable que toma el nombre del sistema operativo que se tenga instalado if(ax.equals("Windows 7") || ax.equals("Windows")){//si es un sistema windows se aplica el skin que tiene java para windows try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel"); interfaz w = new interfaz(); // TODO code application logic here } catch (ClassNotFoundException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (InstantiationException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (UnsupportedLookAndFeelException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } } if(ax.equals("Linux")){//si es un sistema linux se aplica el skin que tiene java para linux try { UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); interfaz w = new interfaz(); // TODO code application logic here } catch (ClassNotFoundException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (InstantiationException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (IllegalAccessException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } catch (UnsupportedLookAndFeelException ex) { Logger.getLogger(interfaz.class.getName()).log(Level.SEVERE, null, ex); } } } }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 | import java.awt.BorderLayout; import java.awt.Color; import java.awt.Font; import java.awt.Insets; import java.awt.Panel; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.BorderFactory; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JTextField; public class interfaz implements ActionListener{ JTextField jt1, jt2; Panel pN, pb1, pb3; JPanel pS, pb2; JButton mc, mr, ms, mMas, mMenos, numeros[], operaciones[]; String oper[]={"R", "C", "+", "/", "-" ,"*", "="}, ax=""; float n1, n2, nr, M;//variables para las operaciones int tipOp; //para controlar el tipo de operacion que se realiza boolean t=false;//control sobre escribir un nuevo numero despues de alguna operacion cambia a true cuando se ha realizado una operacion public interfaz(){ JFrame jfMain = new JFrame("Calculator"); jfMain.setLayout(new BorderLayout(4, 4)); norte(); sur(); jfMain.add(pN, BorderLayout.NORTH); jfMain.add(pS, BorderLayout.CENTER); jfMain.setLocation(100, 80); jfMain.setResizable(false); jfMain.setVisible(true); jfMain.setSize(300, 380); jfMain.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public void norte(){ pN = new Panel(null); jt1 = new JTextField(""); jt2 = new JTextField("0"); jt1.setHorizontalAlignment(JTextField.RIGHT); jt2.setHorizontalAlignment(JTextField.RIGHT); //Quitar bordes a los campos de texto jt1.setBorder(BorderFactory.createLineBorder(Color.white)); jt2.setBorder(BorderFactory.createLineBorder(Color.white)); //desabilitando los campos de texto jt1.setEditable(false); jt2.setEditable(false); jt1.setBackground(Color.white); jt2.setBackground(Color.white); pN.add(jt1); pN.add(jt2); jt1.setBounds(35, 10, 200, 15); jt2.setBounds(35, 25, 200, 30); pN.setSize(270, 47); pN.setVisible(true); } public void sur(){ pS = new JPanel(new BorderLayout(6, 50)); pS.setLayout(new BorderLayout(4, 4)); botMem(); botNum(); botOpe(); pS.add(pb1, BorderLayout.NORTH); pS.add(pb2, BorderLayout.CENTER); pS.add(pb3, BorderLayout.EAST); pS.setSize(270, 330); } public void botMem(){ pb1 = new Panel(null); mc = new JButton("MC"); mr = new JButton("MR"); ms = new JButton("MS"); mMas = new JButton("M+"); mMenos = new JButton("M-"); mc.setFont(new Font("Arial", Font.BOLD, 11)); mr.setFont(new Font("Arial", Font.BOLD, 11)); ms.setFont(new Font("Arial", Font.BOLD, 11)); mMas.setFont(new Font("Arial", Font.BOLD, 11)); mMenos.setFont(new Font("Arial", Font.BOLD, 11)); mc.setMargin(new Insets(1, 1, 1, 1)); mr.setMargin(new Insets(1, 1, 1, 1)); ms.setMargin(new Insets(1, 1, 1, 1)); mMas.setMargin(new Insets(1, 1, 1, 1)); mMenos.setMargin(new Insets(1, 1, 1, 1)); mc.setBounds(35, 0, 33, 33); mr.setBounds(78, 0, 33, 33); ms.setBounds(121, 0, 33, 33); mMas.setBounds(164, 0, 33, 33); mMenos.setBounds(207, 0, 33, 33); pb1.add(mc); pb1.add(mr); pb1.add(ms); pb1.add(mMas); pb1.add(mMenos); mc.addActionListener(this); mr.addActionListener(this); ms.addActionListener(this); mMas.addActionListener(this); mMenos.addActionListener(this); pb1.setSize(270, 45); pb1.setVisible(true); } public void botNum(){ pb2 = new JPanel(null); int nx3=121, nx2=121, nx1=121, n3y=0, n2y=43, n1y=86; numeros = new JButton[11]; //***************************************** //bloque para crear los botones, añadirlos y asignar numeros for (int i=0; i<=10; i++){ if(i<=9){ numeros[i] = new JButton(""+i); pb2.add(numeros[i]); numeros[i].setMargin(new Insets(1, 1, 1, 1)); numeros[i].addActionListener(this); } else{ numeros[i] = new JButton("."); pb2.add(numeros[i]); numeros[i].setMargin(new Insets(1, 1, 1, 1)); numeros[i].addActionListener(this); } } //****************************************** //bloque para posicionar botones for(int i=10; i>=0; i--){ if(i==10){ numeros[i].setBounds(121, 129, 35, 35); } else{ if(i<=9 && i>=7){ numeros[i].setBounds(nx3, n3y, 35, 35); nx3-=43; } else if(i<=6 && i>=4){ n3y+=43; numeros[i].setBounds(nx2, n2y, 35, 35); nx2-=43; } else if(i<=3 && i>=1){ n3y+=43; numeros[i].setBounds(nx1, n1y, 35, 35); nx1-=43; } else if(i==0){ numeros[i].setBounds(35, 129, 78, 35); } } } pb2.setSize(170, 150); pb2.setVisible(true); } public void botOpe(){ pb3 = new Panel(null); int c=0, x=0, y=0; operaciones = new JButton[7]; for(int i=0; i<=6; i++){ if(c<=1){ operaciones[i] = new JButton(oper[i]); pb3.add(operaciones[i]); operaciones[i].setBounds(x, y, 30, 35); operaciones[i].setMargin(new Insets(1, 1, 1, 1)); operaciones[i].addActionListener(this); x+=33; c++; } else{ if(i==6){ x=0; y+=43; operaciones[i] = new JButton(oper[i]); pb3.add(operaciones[i]); operaciones[i].setBounds(x, y, 65, 35); operaciones[i].setMargin(new Insets(1, 1, 1, 1)); operaciones[i].addActionListener(this); x+=33; c++; } else{ c=0; x=0; y+=43; operaciones[i] = new JButton(oper[i]); pb3.add(operaciones[i]); operaciones[i].setBounds(x, y, 30, 35); operaciones[i].setMargin(new Insets(1, 1, 1, 1)); operaciones[i].addActionListener(this); x+=33; c++; } } } pb3.setVisible(true); pb3.setSize(120, 200); } public boolean isN(String ax){ try{ int n = Integer.parseInt(ax); return true; }catch(NumberFormatException e){ return false; } } @Override public void actionPerformed(ActionEvent e) { String op=""; if(isN(e.getActionCommand())){ //cuando se oprimen numeros if(jt1.getText().equals("")){ ax += e.getActionCommand(); jt2.setText(ax); } else{ if(tipOp==0){ if(t){ ax=""; jt1.setText(jt2.getText()); ax += e.getActionCommand(); jt2.setText(ax); t = false; } else{ ax=""; ax += jt2.getText()+e.getActionCommand(); jt2.setText(ax); } }else{ ax=""; ax += jt2.getText()+e.getActionCommand(); jt2.setText(ax); } } } else{//cuando se oprime el resto de botones if(e.getActionCommand().equals("R") ){ jt1.setText(""); Float a = Float.parseFloat(jt2.getText()); jt2.setText(""+Math.sqrt(a)); } if(e.getActionCommand().equals("C") ){ //para reiniciar valores y limpiar pantalla tipOp=0; n1 = 0; n2 =0; nr=0; jt1.setText(""); jt2.setText("0"); ax=""; } if(e.getActionCommand().equals("MC")){//para limpiar la memoria de la calculadora ms.setForeground(Color.black); jt1.setText(""); jt2.setText("0"); M=0; } if(e.getActionCommand().equals("MR")){//para mostrar valor almacenado en la memoria jt1.setText(""); jt2.setText(String.valueOf(M)); }if(e.getActionCommand().equals("MS")){//guardar un valor en la memoria ms.setForeground(Color.red); M = Float.parseFloat(jt2.getText()); } if(e.getActionCommand().equals("M+")){//sumar valor de la pantalla con el valor de la memoria M += Float.parseFloat(jt2.getText()); } if(e.getActionCommand().equals("M-")){//restar valor de la pantalla con el valor de la memoria M -= Float.parseFloat(jt2.getText()); } if(e.getActionCommand().equals(".")){//usar el punto para los decimales ax=""; if(numeros[10].isEnabled()){ numeros[10].setEnabled(false); ax = jt2.getText() +"."; jt2.setText(ax); } } if(e.getActionCommand().equals("+") ){//boton suma numeros[10].setEnabled(true); ax=""; if(tipOp==1){ }else if(tipOp==0 ){//validacion para no chocar con otras operaciones if(jt1.getText().equals("") ){ n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText()+jt2.getText(); jt1.setText(ax+" + "); jt2.setText(""); tipOp = 1; } else { if(!t){//validacion para nueva operacion n1 = Float.parseFloat(jt2.getText()); ax += jt2.getText(); jt1.setText(ax+" + "); jt2.setText(""); tipOp = 1; } else{//usar otras operaciones con la suma n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText(); jt1.setText(ax+" + "); jt2.setText(""); tipOp = 1; } } } } if(e.getActionCommand().equals("-") ){//cuando se decide restar numeros[10].setEnabled(true); ax=""; if(tipOp==2){ }else if(tipOp==0){//validacion para no chocar con otras operaciones if(jt1.getText().equals("")){ n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText()+ jt2.getText(); jt1.setText(ax+" - "); jt2.setText(""); tipOp = 2; } else{ if(!t){//validacion para nueva operacion n1 = Float.parseFloat(jt2.getText()); ax += jt2.getText(); jt1.setText(ax+" - "); jt2.setText(""); tipOp = 2; } else{//usar otras operaciones con la suma n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText(); jt1.setText(ax+" - "); jt2.setText(""); tipOp = 2; } } } } if(e.getActionCommand().equals("*") ){//cuando se decide multiplicar numeros[10].setEnabled(true); ax=""; if(tipOp==3){ }else if(tipOp==0){//validacion para no chocar con otras operaciones if(jt1.getText().equals("")){ n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText()+jt2.getText(); jt1.setText(ax+" * "); jt2.setText(""); tipOp = 3; } else{ if(!t){//validacion para nueva operacion n1 = Float.parseFloat(jt2.getText()); ax += jt2.getText(); jt1.setText(ax+" * "); jt2.setText(""); tipOp = 3; } else{//usar otras operaciones con la suma n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText(); jt1.setText(ax+" * "); jt2.setText(""); tipOp = 3; } } } } if(e.getActionCommand().equals("/") ){//cuando se decide dividir numeros[10].setEnabled(true); ax=""; if(tipOp==4){ }else if(tipOp==0){//validacion para no chocar con otras operaciones if(jt1.getText().equals("")){ n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText()+jt2.getText(); jt1.setText(ax+" / "); jt2.setText(""); tipOp = 4; } else{ if(!t){//validacion para nueva operacion n1 = Float.parseFloat(jt2.getText()); ax += jt2.getText(); jt1.setText(ax+" / "); jt2.setText(""); tipOp = 4; } else{//usar otras operaciones con la suma n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText(); jt1.setText(ax+" / "); jt2.setText(""); tipOp = 4; } } } } if(e.getActionCommand().equals("=") && !jt2.getText().equals("")){ t = true; if(tipOp==1){//operacion para la suma tipOp = 0; ax=""; ax+=jt1.getText() + jt2.getText(); jt1.setText(ax); n2 = Float.parseFloat(jt2.getText()); nr=n1+n2; jt2.setText(String.valueOf(nr)); } else if(tipOp==2){ //operacion para la resta tipOp = 0; ax=""; ax+=jt1.getText()+jt2.getText(); jt1.setText(ax); n2 = Float.parseFloat(jt2.getText()); nr=n1-n2; jt2.setText(String.valueOf(nr)); } if(tipOp==3){ //operacion para la multiplicacion tipOp = 0; ax=""; ax+=jt1.getText()+jt2.getText(); jt1.setText(ax); n2 = Float.parseFloat(jt2.getText()); nr=n1*n2; jt2.setText(String.valueOf(nr)); } if(tipOp==4){ //operacion para la multiplicacion if(Float.parseFloat(jt2.getText())!=0){ tipOp = 0; ax=""; ax+=jt1.getText()+jt2.getText(); jt1.setText(ax); n2 = Float.parseFloat(jt2.getText()); nr=n1/n2; jt2.setText(String.valueOf(nr)); } else JOptionPane.showMessageDialog(null, "No se puede realizar divison por 0"); } } } } } |
import java.awt.BorderLayout; import java.awt.Color; import java.awt.Font; import java.awt.Insets; import java.awt.Panel; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.BorderFactory; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JOptionPane; import javax.swing.JPanel; import javax.swing.JTextField; public class interfaz implements ActionListener{ JTextField jt1, jt2; Panel pN, pb1, pb3; JPanel pS, pb2; JButton mc, mr, ms, mMas, mMenos, numeros[], operaciones[]; String oper[]={"R", "C", "+", "/", "-" ,"*", "="}, ax=""; float n1, n2, nr, M;//variables para las operaciones int tipOp; //para controlar el tipo de operacion que se realiza boolean t=false;//control sobre escribir un nuevo numero despues de alguna operacion cambia a true cuando se ha realizado una operacion public interfaz(){ JFrame jfMain = new JFrame("Calculator"); jfMain.setLayout(new BorderLayout(4, 4)); norte(); sur(); jfMain.add(pN, BorderLayout.NORTH); jfMain.add(pS, BorderLayout.CENTER); jfMain.setLocation(100, 80); jfMain.setResizable(false); jfMain.setVisible(true); jfMain.setSize(300, 380); jfMain.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); } public void norte(){ pN = new Panel(null); jt1 = new JTextField(""); jt2 = new JTextField("0"); jt1.setHorizontalAlignment(JTextField.RIGHT); jt2.setHorizontalAlignment(JTextField.RIGHT); //Quitar bordes a los campos de texto jt1.setBorder(BorderFactory.createLineBorder(Color.white)); jt2.setBorder(BorderFactory.createLineBorder(Color.white)); //desabilitando los campos de texto jt1.setEditable(false); jt2.setEditable(false); jt1.setBackground(Color.white); jt2.setBackground(Color.white); pN.add(jt1); pN.add(jt2); jt1.setBounds(35, 10, 200, 15); jt2.setBounds(35, 25, 200, 30); pN.setSize(270, 47); pN.setVisible(true); } public void sur(){ pS = new JPanel(new BorderLayout(6, 50)); pS.setLayout(new BorderLayout(4, 4)); botMem(); botNum(); botOpe(); pS.add(pb1, BorderLayout.NORTH); pS.add(pb2, BorderLayout.CENTER); pS.add(pb3, BorderLayout.EAST); pS.setSize(270, 330); } public void botMem(){ pb1 = new Panel(null); mc = new JButton("MC"); mr = new JButton("MR"); ms = new JButton("MS"); mMas = new JButton("M+"); mMenos = new JButton("M-"); mc.setFont(new Font("Arial", Font.BOLD, 11)); mr.setFont(new Font("Arial", Font.BOLD, 11)); ms.setFont(new Font("Arial", Font.BOLD, 11)); mMas.setFont(new Font("Arial", Font.BOLD, 11)); mMenos.setFont(new Font("Arial", Font.BOLD, 11)); mc.setMargin(new Insets(1, 1, 1, 1)); mr.setMargin(new Insets(1, 1, 1, 1)); ms.setMargin(new Insets(1, 1, 1, 1)); mMas.setMargin(new Insets(1, 1, 1, 1)); mMenos.setMargin(new Insets(1, 1, 1, 1)); mc.setBounds(35, 0, 33, 33); mr.setBounds(78, 0, 33, 33); ms.setBounds(121, 0, 33, 33); mMas.setBounds(164, 0, 33, 33); mMenos.setBounds(207, 0, 33, 33); pb1.add(mc); pb1.add(mr); pb1.add(ms); pb1.add(mMas); pb1.add(mMenos); mc.addActionListener(this); mr.addActionListener(this); ms.addActionListener(this); mMas.addActionListener(this); mMenos.addActionListener(this); pb1.setSize(270, 45); pb1.setVisible(true); } public void botNum(){ pb2 = new JPanel(null); int nx3=121, nx2=121, nx1=121, n3y=0, n2y=43, n1y=86; numeros = new JButton[11]; //***************************************** //bloque para crear los botones, añadirlos y asignar numeros for (int i=0; i<=10; i++){ if(i<=9){ numeros[i] = new JButton(""+i); pb2.add(numeros[i]); numeros[i].setMargin(new Insets(1, 1, 1, 1)); numeros[i].addActionListener(this); } else{ numeros[i] = new JButton("."); pb2.add(numeros[i]); numeros[i].setMargin(new Insets(1, 1, 1, 1)); numeros[i].addActionListener(this); } } //****************************************** //bloque para posicionar botones for(int i=10; i>=0; i--){ if(i==10){ numeros[i].setBounds(121, 129, 35, 35); } else{ if(i<=9 && i>=7){ numeros[i].setBounds(nx3, n3y, 35, 35); nx3-=43; } else if(i<=6 && i>=4){ n3y+=43; numeros[i].setBounds(nx2, n2y, 35, 35); nx2-=43; } else if(i<=3 && i>=1){ n3y+=43; numeros[i].setBounds(nx1, n1y, 35, 35); nx1-=43; } else if(i==0){ numeros[i].setBounds(35, 129, 78, 35); } } } pb2.setSize(170, 150); pb2.setVisible(true); } public void botOpe(){ pb3 = new Panel(null); int c=0, x=0, y=0; operaciones = new JButton[7]; for(int i=0; i<=6; i++){ if(c<=1){ operaciones[i] = new JButton(oper[i]); pb3.add(operaciones[i]); operaciones[i].setBounds(x, y, 30, 35); operaciones[i].setMargin(new Insets(1, 1, 1, 1)); operaciones[i].addActionListener(this); x+=33; c++; } else{ if(i==6){ x=0; y+=43; operaciones[i] = new JButton(oper[i]); pb3.add(operaciones[i]); operaciones[i].setBounds(x, y, 65, 35); operaciones[i].setMargin(new Insets(1, 1, 1, 1)); operaciones[i].addActionListener(this); x+=33; c++; } else{ c=0; x=0; y+=43; operaciones[i] = new JButton(oper[i]); pb3.add(operaciones[i]); operaciones[i].setBounds(x, y, 30, 35); operaciones[i].setMargin(new Insets(1, 1, 1, 1)); operaciones[i].addActionListener(this); x+=33; c++; } } } pb3.setVisible(true); pb3.setSize(120, 200); } public boolean isN(String ax){ try{ int n = Integer.parseInt(ax); return true; }catch(NumberFormatException e){ return false; } } @Override public void actionPerformed(ActionEvent e) { String op=""; if(isN(e.getActionCommand())){ //cuando se oprimen numeros if(jt1.getText().equals("")){ ax += e.getActionCommand(); jt2.setText(ax); } else{ if(tipOp==0){ if(t){ ax=""; jt1.setText(jt2.getText()); ax += e.getActionCommand(); jt2.setText(ax); t = false; } else{ ax=""; ax += jt2.getText()+e.getActionCommand(); jt2.setText(ax); } }else{ ax=""; ax += jt2.getText()+e.getActionCommand(); jt2.setText(ax); } } } else{//cuando se oprime el resto de botones if(e.getActionCommand().equals("R") ){ jt1.setText(""); Float a = Float.parseFloat(jt2.getText()); jt2.setText(""+Math.sqrt(a)); } if(e.getActionCommand().equals("C") ){ //para reiniciar valores y limpiar pantalla tipOp=0; n1 = 0; n2 =0; nr=0; jt1.setText(""); jt2.setText("0"); ax=""; } if(e.getActionCommand().equals("MC")){//para limpiar la memoria de la calculadora ms.setForeground(Color.black); jt1.setText(""); jt2.setText("0"); M=0; } if(e.getActionCommand().equals("MR")){//para mostrar valor almacenado en la memoria jt1.setText(""); jt2.setText(String.valueOf(M)); }if(e.getActionCommand().equals("MS")){//guardar un valor en la memoria ms.setForeground(Color.red); M = Float.parseFloat(jt2.getText()); } if(e.getActionCommand().equals("M+")){//sumar valor de la pantalla con el valor de la memoria M += Float.parseFloat(jt2.getText()); } if(e.getActionCommand().equals("M-")){//restar valor de la pantalla con el valor de la memoria M -= Float.parseFloat(jt2.getText()); } if(e.getActionCommand().equals(".")){//usar el punto para los decimales ax=""; if(numeros[10].isEnabled()){ numeros[10].setEnabled(false); ax = jt2.getText() +"."; jt2.setText(ax); } } if(e.getActionCommand().equals("+") ){//boton suma numeros[10].setEnabled(true); ax=""; if(tipOp==1){ }else if(tipOp==0 ){//validacion para no chocar con otras operaciones if(jt1.getText().equals("") ){ n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText()+jt2.getText(); jt1.setText(ax+" + "); jt2.setText(""); tipOp = 1; } else { if(!t){//validacion para nueva operacion n1 = Float.parseFloat(jt2.getText()); ax += jt2.getText(); jt1.setText(ax+" + "); jt2.setText(""); tipOp = 1; } else{//usar otras operaciones con la suma n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText(); jt1.setText(ax+" + "); jt2.setText(""); tipOp = 1; } } } } if(e.getActionCommand().equals("-") ){//cuando se decide restar numeros[10].setEnabled(true); ax=""; if(tipOp==2){ }else if(tipOp==0){//validacion para no chocar con otras operaciones if(jt1.getText().equals("")){ n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText()+ jt2.getText(); jt1.setText(ax+" - "); jt2.setText(""); tipOp = 2; } else{ if(!t){//validacion para nueva operacion n1 = Float.parseFloat(jt2.getText()); ax += jt2.getText(); jt1.setText(ax+" - "); jt2.setText(""); tipOp = 2; } else{//usar otras operaciones con la suma n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText(); jt1.setText(ax+" - "); jt2.setText(""); tipOp = 2; } } } } if(e.getActionCommand().equals("*") ){//cuando se decide multiplicar numeros[10].setEnabled(true); ax=""; if(tipOp==3){ }else if(tipOp==0){//validacion para no chocar con otras operaciones if(jt1.getText().equals("")){ n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText()+jt2.getText(); jt1.setText(ax+" * "); jt2.setText(""); tipOp = 3; } else{ if(!t){//validacion para nueva operacion n1 = Float.parseFloat(jt2.getText()); ax += jt2.getText(); jt1.setText(ax+" * "); jt2.setText(""); tipOp = 3; } else{//usar otras operaciones con la suma n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText(); jt1.setText(ax+" * "); jt2.setText(""); tipOp = 3; } } } } if(e.getActionCommand().equals("/") ){//cuando se decide dividir numeros[10].setEnabled(true); ax=""; if(tipOp==4){ }else if(tipOp==0){//validacion para no chocar con otras operaciones if(jt1.getText().equals("")){ n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText()+jt2.getText(); jt1.setText(ax+" / "); jt2.setText(""); tipOp = 4; } else{ if(!t){//validacion para nueva operacion n1 = Float.parseFloat(jt2.getText()); ax += jt2.getText(); jt1.setText(ax+" / "); jt2.setText(""); tipOp = 4; } else{//usar otras operaciones con la suma n1 = Float.parseFloat(jt2.getText()); ax += jt1.getText(); jt1.setText(ax+" / "); jt2.setText(""); tipOp = 4; } } } } if(e.getActionCommand().equals("=") && !jt2.getText().equals("")){ t = true; if(tipOp==1){//operacion para la suma tipOp = 0; ax=""; ax+=jt1.getText() + jt2.getText(); jt1.setText(ax); n2 = Float.parseFloat(jt2.getText()); nr=n1+n2; jt2.setText(String.valueOf(nr)); } else if(tipOp==2){ //operacion para la resta tipOp = 0; ax=""; ax+=jt1.getText()+jt2.getText(); jt1.setText(ax); n2 = Float.parseFloat(jt2.getText()); nr=n1-n2; jt2.setText(String.valueOf(nr)); } if(tipOp==3){ //operacion para la multiplicacion tipOp = 0; ax=""; ax+=jt1.getText()+jt2.getText(); jt1.setText(ax); n2 = Float.parseFloat(jt2.getText()); nr=n1*n2; jt2.setText(String.valueOf(nr)); } if(tipOp==4){ //operacion para la multiplicacion if(Float.parseFloat(jt2.getText())!=0){ tipOp = 0; ax=""; ax+=jt1.getText()+jt2.getText(); jt1.setText(ax); n2 = Float.parseFloat(jt2.getText()); nr=n1/n2; jt2.setText(String.valueOf(nr)); } else JOptionPane.showMessageDialog(null, "No se puede realizar divison por 0"); } } } } }
Una vez ejecutada la aplicación veremos lo siguiente:
La segunda clase es larga, ya que en esta se realizaron varias validaciones, como también al momento de realizar las operaciones, el ejercicio se trato de realizar lo mas parecido posible a la calculadora de Windows. Espero que el ejercicio practico sea de gran utilidad 😉
Disculpe queria saber como le hace para poner los botones con punta redonda?
hi this is a very important for my work since I am in high school and as this was what most caught my attention I need your help because it is very difficult for me this programming and then you do not understand all this programming it is not mine. I would be very grateful if you lean on this job posting videos that are more useful to me.
If so thank you very much for yu collaboration and for your help us programmers.
Thank you and goodbye
Thanks for reading my blog. The problem for you with the videos is that would make in Spanish, and so you see your native language is English.
In any case it is something that could soon make, as for work and family time to devote to my blog is almost limited.
Greetings and success!
Saludos.
Gracias por el artículo.
Será posible me pases el código de la solución completa?
Te agradezco de antemano!