diff options
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index c7b68f7..bda03a3 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -18,6 +18,7 @@ float mph; float newFar; float chill; +//The following const are for the while loops to control what user can enter const int celmin = -62; const float celmax = 49.5; const int farmin = -80; @@ -25,6 +26,7 @@ const int farmax = 121; const int mphmin = 0; const int mphmax = 231; +//to check for user to enter celcius or fahrenheit string check; const string celcheck = "c"; |