/*========================================================================
nama file : Input Data
tanggal : 22 nov 2011
programmer : Hendra Silaban
deskripsi : - Menginput Data
- Program Mengkonversi Suhu Celcius ke Fahrenheit,
Rheamur & Kelvin
========================================================================*/
import javax.swing.JOptionPane;
class Temperatur
{
public static void main(String[] args)
{
String CelciusS;
int Celcius;
double Fahrenheit;
double Rheamur;
double Kelvin;
CelciusS = JOptionPane.showInputDialog("masukkan suhu cuaca = ");
Celcius = Integer.parseInt(CelciusS);
Fahrenheit = ((Celcius + 1.8) + 32);
Rheamur = Celcius * 0.8;
Kelvin = Celcius + 273.15;
JOptionPane.showMessageDialog(null , "maka suhunya = " +
"nFahrenheit : "+ Fahrenheit +"F" +
"nRheamur : "+ Rheamur +"R" +
"nKelvin : "+ Kelvin +"K");
}
}
Tidak ada komentar:
Posting Komentar