diff options
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 7d13575..7749557 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -31,8 +31,6 @@ int main() cout << "Wind speed is: " << W << " MPH" << endl << endl; - - C = WindChillCalculation(W, t); cout << "For " << t << " degrees F and " << W << " MPH, the windchill is: " << C << endl; @@ -130,7 +128,7 @@ void GetInfo(char& letter, float& t, float& T, int& W) cout << endl; } } - + // requests wind speed cout << "Enter wind speed between 0 MPH & 231 MPH: "; cin >> W; |