---- begin documentation ---- Very simple program that will calculate wind chill. You enter the wind speed in mph and tempurature in degrees farenheit and wind chill is output. Do whatever you will with this program -- hopefully someone out there will improve it by accepting either F or C temperatures, mph or kph wind speed, etc. ---- begin ascii ---- \START85\ \COMMENT=Program file dated 02/02/97, 19:25 \NAME=WCHILL \FILE=F:\TI85\PROGRAMS\WCHILL.85P :ClLCD :Input "WIND SPEED (mph):",W :Input "TEMPERATURE (\deg\F):",T :x=int (((10.45+(6.686112*\sqrt\W-(0.447041*W)))/22.034)*(T-91.4))+91.4\#\ :Disp "Corrected" :Disp "Temperature:" :Outpt(4,14,x) :Outpt(4,17,"\deg\F") \STOP85\