Programming Fundamentals/Variables/Fortran

From Wikiversity
Jump to navigation Jump to search

variables.f90[edit | edit source]

! This program converts a Fahrenheit temperature to Celsius.
!
! References:
!   https://www.tutorialspoint.com/fortran

program variables
    real :: fahrenheit, celsius
    
    print ("(a)"), "Enter Fahrenheit temperature:"
    read *, fahrenheit
    
    celsius = (fahrenheit - 32) * 5 / 9
    
    print "(f5.1 a f5.1 a)", fahrenheit, "° Fahrenheit is ", &
        celsius, "° Celsius"
end program

Try It[edit | edit source]

Copy and paste the code above into one of the following free online development environments or use your own Fortran compiler / interpreter / IDE.

See Also[edit | edit source]