document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /*
  2.  
  3.  * To change this license header, choose License Headers in Project Properties.
  4.  
  5.  * To change this template file, choose Tools | Templates
  6.  
  7.  * and open the template in the editor.
  8.  
  9.  */
  10.  
  11. package tugaspraktikum1;
  12.  
  13.  
  14.  
  15. /**
  16.  
  17.  *
  18.  
  19.  * @author Maswanul Dwi M
  20.  
  21.  */
  22.  
  23. import javax.swing.JOptionPane;
  24.  
  25. public class Tugaspraktikum1 {
  26.  
  27.  
  28.  
  29.     /**
  30.  
  31.      * @param args the command line arguments
  32.  
  33.      */
  34.  
  35.     public static void main(String[] args) {
  36.  
  37.      
  38.  
  39.         int celcius;
  40.  
  41.         float fareinhet;
  42.  
  43.      
  44.  
  45.         celcius = Integer.parseInt(JOptionPane.showInputDialog("Masukan Derajat Celcius :"));
  46.  
  47.         fareinhet = 9f/5f * celcius + 32f;
  48.  
  49.      
  50.  
  51.         JOptionPane.showMessageDialog(null, "Hasil Konversi Suhu Dari Celcius Ke Fareinhet : "+fareinhet);
  52.  
  53.     }
  54.  
  55.  
  56. }
');