-
Notifications
You must be signed in to change notification settings - Fork 0
/
FunctionTemperatura.java
41 lines (35 loc) · 1.15 KB
/
FunctionTemperatura.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
package conversor;
import javax.swing.JOptionPane;
/**
* @author Skyhospes
*/
public class FunctionTemperatura {
ConvertirTemperatura temperatura = new ConvertirTemperatura();
public void ConvertirTemperatura(double valorRecibido){
String opciones = (JOptionPane.showInputDialog(null,
"Elije la temperatura que desea convertir ", "Temperatura",
JOptionPane.PLAIN_MESSAGE, null,
new Object[] {
"De Celcius a Kelvin", "De Kelvin a Celcius",
"De Celsius a Fahrenheit", "De Farenheit a Celcius"},
"Seleccion")).toString();
switch (opciones) {
case "De Celcius a Kelvin":{
temperatura.ConvertirCelciusAKelvin(valorRecibido);
}
break;
case "De Kelvin a Celcius":{
temperatura.ConvertirKelvinACelcius(valorRecibido);
}
break;
case "De Celsius a Fahrenheit":{
temperatura.ConvertirCelsiusAFahrenheit(valorRecibido);
}
break;
case "De Farenheit a Celcius":{
temperatura.ConvertirFarenheitACelcius(valorRecibido);
}
break;
}
}
}