-
Notifications
You must be signed in to change notification settings - Fork 0
/
DigitarMoeda.java
21 lines (20 loc) · 970 Bytes
/
DigitarMoeda.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.util.Scanner;
public class DigitarMoeda {
public static void digitar(Scanner scanner) {
try {
System.out.print("Digite a abreviação da moeda!\n");
System.out.print("Exemplos USD, BRL, EUR, JPY e outros...\n");
System.out.print("Digite a moeda de origem: ");
String moedaOrigem = scanner.next().toUpperCase();
System.out.print("Digite a moeda de destino: ");
String moedaDestino = scanner.next().toUpperCase();
Conversor.converterMoeda(moedaOrigem, moedaDestino, scanner);
} catch (Exception e) {
System.out.println("*********************** - ERRO - *******************************");
System.out.println("Ocorreu um erro: " + e.getMessage());
System.out.println("****************************************************************");
// Finalizar a aplicação
System.exit(1);
}
}
}