Friday, February 10, 2017

Fortran Program to convert temperature from Fahrenheit to Celsius

c123456789
                PROGRAM TEMCOV
                IMPLICIT NONE
                REAL::fahrenheit, centigrade
                PRINT *, "INPUT TEMPERATURE IN FAHRENHEIT"
                READ *, fahrenheit
                centigrade = (5.0/9.0) * (fahrenheit-32)
                PRINT *, "CENTIGRADE = ",centigrade,"C"
                STOP
                END