Question: I cant get this program to run and im not sure why #include #include #include using namespace std; //Write a function that returns the wind

I cant get this program to run and im not sure why

#include

#include #include using namespace std; //Write a function that returns the wind chill index. //GetWindChill: A function that takes a temperature (F) and a wind speed (mph) and returns the wind chill factor in Fahrenheit. double GetWindChill(double T, double V) { double W=35.74 + 0.6215 * T - 35.75 * pow(V, 0.16) + 0.4275 * T * pow(V, 0.16); return W; } int main() { for(int i = 0; i < 30; i++) cout<<"*"; cout<<"\tThe Wind Chill Table\t"; for(int i = 0; i < 30; i++) cout<<"*"; cout<<" \t\t\t\t Temperature (F)"<

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!