-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractica 14.txt
74 lines (65 loc) · 3.17 KB
/
practica 14.txt
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
package calculadora;
import javax.swing.*;
import java.lang.Math;
/**
*
* @author TICS
*/
public class Calculadora {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
int opcion=0;
double n1,n2,suma,resta,multiplicacion,division,potencia,raiz;
do{
opcion=Integer.parseInt(JOptionPane.showInputDialog("Calculadora \n"+
"1)Suma \n"+
"2)Resta \n"+
"3)Multiplicacion \n"+
"4)Division \n"+
"5)Potencia \n"+
"6)Raiz \n"+
"7)Salir \n"+
"Ingresa una opcion:"));
switch(opcion)
{
case 1:
n1=Double.parseDouble(JOptionPane.showInputDialog("Ingresa el primer numero:"));
n2=Double.parseDouble(JOptionPane.showInputDialog("Ingresa el segundo numero:"));
suma=n1+n2;
JOptionPane.showMessageDialog(null,"La suma es:"+ suma);
break;
case 2:
n1=Double.parseDouble(JOptionPane.showInputDialog("Ingresa el primer numero:"));
n2=Double.parseDouble(JOptionPane.showInputDialog("Ingresa el segundo numero:"));
resta=n1-n2;
JOptionPane.showMessageDialog(null,"La resta es:"+ resta);
break;
case 3:
n1=Double.parseDouble(JOptionPane.showInputDialog("Ingresa el primer numero:"));
n2=Double.parseDouble(JOptionPane.showInputDialog("Ingresa el segundo numero:"));
multiplicacion=n1*n2;
JOptionPane.showMessageDialog(null,"La multiplicacion es:"+ multiplicacion);
break;
case 4:
n1=Double.parseDouble(JOptionPane.showInputDialog("Ingresa el primer numero:"));
n2=Double.parseDouble(JOptionPane.showInputDialog("Ingresa el segundo numero:"));
division=n1/n2;
JOptionPane.showMessageDialog(null,"La division es:"+ division);
break;
case 5:
n1=Double.parseDouble(JOptionPane.showInputDialog("Ingresa el primer numero:"));
potencia=n1*(3);
JOptionPane.showMessageDialog(null,"La potencia es:"+ potencia);
break;
case 6:
n1=Double.parseDouble(JOptionPane.showInputDialog("Ingresa el primer numero:"));
raiz = (Double) Math.sqrt(n1);
JOptionPane.showMessageDialog(null,"La raiz es:"+ raiz);
break;
}
}while(opcion!=7);
}
}