summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonCr <[email protected]>2022-11-11 12:57:55 -0800
committerJonCr <[email protected]>2022-11-11 12:57:55 -0800
commitd4683342f80598a5a8b16b760ff0adee9a6b0311 (patch)
tree22d835be53e74aa03954d29d42c312a3da7ab492
parentAdded comments (diff)
downloadcst116-lab2-cognitiveshadow-d4683342f80598a5a8b16b760ff0adee9a6b0311.tar.xz
cst116-lab2-cognitiveshadow-d4683342f80598a5a8b16b760ff0adee9a6b0311.zip
Update
-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;
}