!THIS CONVERTS celsius to farenheit
PROGRAM temp_conversion
IMPLICIT NONE
real :: far, cel
PRINT *, " Type The Value in Celsius "
READ *, cel
PRINT *, cel
far=1.8*cel+32.0
PRINT *, "Fareneit= ", far
END PROGRAM temp_conversion
Subscribe to:
Post Comments (Atom)

why the ancient language?
ReplyDeletei thought u were planning to code the project in C?
ReplyDeleteyeah i know, but it turns out this is not as ancient as it looks... plus it is a really good tool to learn FORTRAN as it will be of great use to me later as most of the scientific coding is done in FORTRAN.
ReplyDelete