FTN95 is not like your other plain usual boring Fortran compilers. Here you also can with just one additional line of text create your own much more manageable DOS-like window. You can control its size, colors, fonts, backgrounds, logical unit, all will still fit in one line. You can insert its window into large environment. Here is whole your program again.
winapp
i=winio@('%60.20cw[vscroll]%ac[esc]%lw',0,'exit',ilw)
1 print*,'==============================================='
print*,'Please enter the temperature in Fahrenheit (F):'
read*,f
c = (f-32.)*(5./9.)
print*,'-----------------------------------------'
print*,'----------------Input Values-------------'
print*,'-----------------------------------------'
print*,'Input Temperature', f, '(F)'
print*,'-----------------------------------------'
print*,'-----------Calculated Values-------------'
print*,'-----------------------------------------'
print*,'Converted Temperature', c,'(C)'
print*,'-----------------------------------------'
print*,'-----------------------------------------'
goto 1
end
You can learn other tricks on similar program which converts F to C in this forum's Suggestions/User Examples