-
Notifications
You must be signed in to change notification settings - Fork 0
/
Principal.java
73 lines (58 loc) · 2.65 KB
/
Principal.java
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
package conversor;
import javax.swing.JOptionPane;
public class Principal {
public static void main(String[] args) {
FunctionMoneda monedas = new FunctionMoneda();
FunctionTemperatura temperatura = new FunctionTemperatura();
while (true){
String opciones = (JOptionPane.showInputDialog(null,
"Seleccione una obcioinde conversion", "Menu",
JOptionPane.QUESTION_MESSAGE, null,
new Object[] {"Coversor de Moneda", "Conversor de Temperatura"},
"Seleccion")).toString();
switch (opciones) {
case "Coversor de Moneda":{
String input = JOptionPane.showInputDialog("Ingrese un valor para convertir");
if(ValidarNumero(input) == true) {
double valorRecibido = Double.parseDouble(input);
monedas.ConvertirMonedas(valorRecibido);
int respuesta=JOptionPane.showConfirmDialog(null,"¿Deseas realizar otra conversion?");
if (JOptionPane.OK_OPTION == respuesta){
System.out.println("Selecciona opción Afirmativa");
}else {
JOptionPane.showMessageDialog(null, "Programa terminado");
}
}else {
JOptionPane.showMessageDialog(null, "Valor invalido");
}
break;
}
case "Conversor de Temperatura":{
String input = JOptionPane.showInputDialog("Ingrese el valor de la temperatura para convertir");
if(ValidarNumero(input) == true) {
double valorRecibido = Double.parseDouble(input);
temperatura.ConvertirTemperatura(valorRecibido);
int respuesta = 0;
respuesta = JOptionPane.showConfirmDialog(null, "¿Desea continuar?");
if((respuesta == 0) && (ValidarNumero(input) == true)) {
} else {
JOptionPane.showMessageDialog(null, "Programa terminado");
}
} else {
JOptionPane.showMessageDialog(null, "Valor inválido");
}
break;
}
}
}
}
public static boolean ValidarNumero(String input) {
try {
double x = Double.parseDouble(input);
if(x >= 0 || x < 0);
return true;
} catch (NumberFormatException e) {
return false;
}
}
}