summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
diff options
context:
space:
mode:
authorTaylor Rogers <[email protected]>2022-11-08 09:00:13 -0800
committerTaylor Rogers <[email protected]>2022-11-08 09:00:13 -0800
commita2fedd0b450b434656f5ca8641f0e39e91769a38 (patch)
tree17c035a9c6b7037749eabd740941926219d95438 /BlankConsoleLab/BlankConsoleLab.cpp
parentChanged how the limits work (diff)
downloadcst116-lab2-taylorrog-a2fedd0b450b434656f5ca8641f0e39e91769a38.tar.xz
cst116-lab2-taylorrog-a2fedd0b450b434656f5ca8641f0e39e91769a38.zip
syntax errors
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp4
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)