diff options
| author | Taylor Rogers <[email protected]> | 2022-11-08 09:00:13 -0800 |
|---|---|---|
| committer | Taylor Rogers <[email protected]> | 2022-11-08 09:00:13 -0800 |
| commit | a2fedd0b450b434656f5ca8641f0e39e91769a38 (patch) | |
| tree | 17c035a9c6b7037749eabd740941926219d95438 /BlankConsoleLab/BlankConsoleLab.cpp | |
| parent | Changed how the limits work (diff) | |
| download | cst116-lab2-taylorrog-a2fedd0b450b434656f5ca8641f0e39e91769a38.tar.xz cst116-lab2-taylorrog-a2fedd0b450b434656f5ca8641f0e39e91769a38.zip | |
syntax errors
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -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) |