diff options
| author | JonCr <[email protected]> | 2022-11-11 12:57:55 -0800 |
|---|---|---|
| committer | JonCr <[email protected]> | 2022-11-11 12:57:55 -0800 |
| commit | d4683342f80598a5a8b16b760ff0adee9a6b0311 (patch) | |
| tree | 22d835be53e74aa03954d29d42c312a3da7ab492 /BlankConsoleLab/BlankConsoleLab.cpp | |
| parent | Added comments (diff) | |
| download | cst116-lab2-cognitiveshadow-d4683342f80598a5a8b16b760ff0adee9a6b0311.tar.xz cst116-lab2-cognitiveshadow-d4683342f80598a5a8b16b760ff0adee9a6b0311.zip | |
Update
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 2 |
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; } |