Guest User

Untitled

a guest
Dec 16th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ! gfortran temperature_module.f90 10.f90
  2. ! ./a.out
  3. program main
  4. use temperature_module, ONLY : celsius2farenheit, celsius2kelvin
  5. implicit none
  6. real :: c
  7. write (*, *) 'Insert Temperature in Celsius: '
  8. read (*, *) c
  9. print *, celsius2farenheit(c)
  10. print *, celsius2kelvin(c)
  11. end program main
Add Comment
Please, Sign In to add comment