Calculate Fahrenheit To Centigrade Using Java

  1. // fahrenhit  to centigrade   
  2.   
  3. import java.io.*;  
  4.   
  5. class ssvfc  
  6.  {  
  7.    public static void main(String arg[]) throws IOException  
  8.    {  
  9.     String s1;  
  10.   
  11.     double t1,t2;  
  12.   
  13.     DataInputStream dr = new DataInputStream(System.in);  
  14.      
  15.     System.out.println("\nEnter the centigrade in temperature : ");  
  16.   
  17.     s1 = dr.readLine();  
  18.   
  19.     t1 = Double.parseDouble(s1);  
  20.   
  21.     t2 = (t1 -32)/1.8;  
  22.   
  23.     System.out.println("\nThe temperature in farenhit is : " +t2);  
  24.   }  
  25.  }  
  26.   
  27.