From a2fedd0b450b434656f5ca8641f0e39e91769a38 Mon Sep 17 00:00:00 2001 From: Taylor Rogers Date: Tue, 8 Nov 2022 09:00:13 -0800 Subject: syntax errors --- BlankConsoleLab/BlankConsoleLab.cpp | 4 ++-- 1 file 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) -- cgit v1.2.3