Konverter Celcius-farenheit | Celcius - Reamur dengan Java

import javax.swing.*;
class konverter
{
public static void main(String args[])throws Exception
{

//deklarasi variabel
int ce;

String celcius = "";
celcius=JOptionPane.showInputDialog("Masukan Nilai Celcius");

ce = Integer.parseInt(celcius);
int fa = ce * 9 / 5 + 32;
int re = ce * 4 / 5;

JOptionPane.showMessageDialog(null,"\nHasil Konversi " + "\nHasil derajat fahrenheit ="+ fa + "\nHasil derajat reamur= "+ re);
}
}


Hasil tampilan sebagai berikut : .....


Subscribe to receive free email updates:

0 Response to "Konverter Celcius-farenheit | Celcius - Reamur dengan Java"

Posting Komentar

Berkomentarlah dengan Baik dan Sopan..