The wind chill index (WCI) is calculated from the wind speed (v) in miles per hour and the temprature (t) in
fahrenheit . three formulas are used . depending on the wind speed :
if(0<=v<=4)then WCI=t
if(v>=45) then WcI =1.6t-55
otherwise , WCI=91.4 + (0.0203v - 0.304(v)^1/2 - 0.474)
write a program that prompt the user to insert the wind speed (v) in miles per hour format and prompt the user to insert wind temprature on fehrenhite then calculate the wind chill index