wind chill factor and heat index

Write a program to calculate wind chill factor or heat index.wind chill only applies when the temperature is less than or equal to 10 degree celsius.e heat index calculation only applies when the temperature is less than or equal to 80 degree fahrenheit.
HI = c1 + c2T+ c3R+ c4TR + c5T^2+ c6R^2+ c7T^2R+ c8TR^2+ c9T^2R^2
all the c's are constants have a constant value.
wind chill= 33-((10sqrt(v)-v+10.5)*(33-t)/23.1)
we have to use functions for this program i did the temperature conversion and working on the wind chill part but the heat index is really confusing me because all the c has a constant value and i don't get how to begin there.
Any help would be appreciated please.
Hi kalicha,

Can you post the code that you have?

THeIdeasMan
Topic archived. No new replies allowed.