diff options
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index ed2e4c8..7792c9f 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -101,7 +101,7 @@ int main() if (Tunit == 70) { - cout << "Please enter temperature between " << Fmin << " and " << Fmax << "degrees F: "; + cout << "Please enter temperature between " << Fmin << " and " << Fmax << " degrees F: "; cin >> TvalF; if (TvalF > Fmax) @@ -123,7 +123,7 @@ int main() else if (Tunit == 67) { - cout << "Please enter temperature between " << Cmin << " and " << Cmax << "degrees C: "; + cout << "Please enter temperature between " << Cmin << " and " << Cmax << " degrees C: "; cin >> TvalC; if (TvalC > Cmax) |