From d4683342f80598a5a8b16b760ff0adee9a6b0311 Mon Sep 17 00:00:00 2001 From: JonCr Date: Fri, 11 Nov 2022 12:57:55 -0800 Subject: Update --- BlankConsoleLab/BlankConsoleLab.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'BlankConsoleLab/BlankConsoleLab.cpp') 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; } -- cgit v1.2.3