Wind Chill Function - Java Algorithm

Java examples for Algorithm:Formula

Description

Wind Chill Function

Demo Code



public class WindChill {
    public static void main(String args[]) {
        double t = 40;
        double v = 80;
        double w = 35.74 + (0.6215 * t) + (0.4275 * t - 35.75)
                * Math.pow(v, 0.16);
        System.out.println(w);/*w  ww . j  a va 2 s . com*/

    }

}

Related Tutorials