-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrincipal.java
59 lines (50 loc) · 2.38 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
public class Principal {
public static void main(String[] args) {
Funcao moedas = new Funcao();
FuncaoTemperatura temperatura = new FuncaoTemperatura();
while (true) {
String opcao = JOptionPane.showInputDialog(null, "Escolha uma opção ", "Menu", JOptionPane.PLAIN_MESSAGE, null, new Object[]{"Conversor de Moeda", "Conversor de Temperatura"}, "Escolha").toString();
switch (opcao) {
case "Conversor de Moeda":
String input = JOptionPane.showInputDialog("Insira um valor: ");
if (checar(input)) {
double valorRecebido = Double.parseDouble(input);
moedas.converterMoeda(valorRecebido);
int resposta = JOptionPane.showConfirmDialog(null, "Deseja continuar?");
if (JOptionPane.OK_OPTION == resposta) {
System.out.println("Escolha opção Afirmativa");
} else {
JOptionPane.showMessageDialog(null, "Programa finalizado");
}
} else {
JOptionPane.showMessageDialog(null, "Valor inválido");
}
break;
case "Conversor de Temperatura":
input = JOptionPane.showInputDialog("Insira um valor de temperatura para converter");
if (checar(input)) {
double valorRecebido = Double.parseDouble(input);
temperatura.converterTemperatura(valorRecebido);
int resposta = 0;
resposta = JOptionPane.showConfirmDialog(null, "Deseja continuar?");
if ((resposta == 0) && (checar(input))) {
} else {
JOptionPane.showMessageDialog(null, "Programa finalizado");
}
} else {
JOptionPane.showMessageDialog(null, "Valor inválido");
}
break;
}
}
}
public static boolean checar(String input) {
try {
double x = Double.parseDouble(input);
if (x >= 0 || x < 0) ;
return true;
} catch (NumberFormatException e) {
return false;
}
}
}