Wind Chill


//Author: Karen Li
//Math.pow(a,b) to compute a^b
//Formula is not valid is T is >50, or if v is >120 or <3
//Not necessary to round the wind chill value, display the value that is computed
//Do not use loops for this program


public class WindChill{
    public static void main(String[] args){
        double t = Double.parseDouble(args[0]);
        double v = Double.parseDouble(args[1]);
        double c = 35.74 + 0.6215*t + (0.4275*t - 35.75)*Math.pow(v,0.16);
        System.out.println("Wind Chill = " + c);

    }
}