summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp
index 03121ae..dc9df83 100644
--- a/BlankConsoleLab/BlankConsoleLab.cpp
+++ b/BlankConsoleLab/BlankConsoleLab.cpp
@@ -124,5 +124,5 @@ void calcWindChill(float temp, float windSpeed)
windChill = 35.74 + 0.6215 * temp - 35.75 * pow(windSpeed, 0.16) + 0.4275 * temp * pow(windSpeed, 0.16);
- cout << endl << windChill;
+ cout << endl << "For temperatures of " << temp << " degrees Fahrenheit and wind speeds of " << windSpeed << " MPH, the windchill is " << windChill << endl;
}