wind chill factor is the felt air temperature on exposed skin due to wind. the wind chill temperature is always low than the air temperature, and is calculated as per the following formula: - Code With Friends

Breaking

Home Top Ad

Search Your Questions

Wednesday, February 20, 2019

wind chill factor is the felt air temperature on exposed skin due to wind. the wind chill temperature is always low than the air temperature, and is calculated as per the following formula:

#include<stdio.h>
#include<math.h>
int main()
{
    int t,v;
    float wcf;
    printf("Enter Temperature and Velocity ");
    scanf("%d %d", &t,&v);

    wcf=35.74+0.6215*t+(0.4275*t-35.75)*pow(v,0.16);
    printf("By the given formula the answer is %f\n",wcf);

}








No comments:

Post a Comment