-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConverteMoedas.java
35 lines (28 loc) · 1.49 KB
/
ConverteMoedas.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
import javax.swing.*;
public class ConverteMoedas {
public void converterReaisParaDolares(double valorRecebido){
double moedaDolar = valorRecebido / 5.13;
moedaDolar = (double) Math.round(moedaDolar * 100d) / 100;
JOptionPane.showMessageDialog(null, "Você tem $ " + moedaDolar + " Dólares");
}
public void converterReaisParaEuros(double valorRecebido){
double moedaEuro = valorRecebido / 10.85;
moedaEuro = (double) Math.round(moedaEuro * 100d) / 100;
JOptionPane.showMessageDialog(null, "Você tem $ " + moedaEuro + " Euros");
}
public void converterReaisParaLibras(double valorRecebido){
double moedaLibra = valorRecebido / 6.33;
moedaLibra = (double) Math.round(moedaLibra * 100d) / 100;
JOptionPane.showMessageDialog(null, "Você tem $ " + moedaLibra + " Libras Esterlinas");
}
public void converterReaisParaPesosArgentinos(double valorRecebido){
double moedaPesoArgentino = valorRecebido / 0.039;
moedaPesoArgentino = (double) Math.round(moedaPesoArgentino * 100d) / 100;
JOptionPane.showMessageDialog(null, "Você tem $ " + moedaPesoArgentino + "Pesos Argentinos");
}
public void converterReaisParaPesosChilenos(double valorRecebido){
double moedaPesoChileno = valorRecebido / 0.0040;
moedaPesoChileno = (double) Math.round(moedaPesoChileno * 100d) / 100;
JOptionPane.showMessageDialog(null, "Você tem $ " + moedaPesoChileno + " Pesos Chilenos");
}
}