diff options
| author | EdwardFine <[email protected]> | 2022-11-08 23:52:02 -0800 |
|---|---|---|
| committer | EdwardFine <[email protected]> | 2022-11-08 23:52:02 -0800 |
| commit | 5b8d745ee7a73bf39824af67b860cbfbdca02966 (patch) | |
| tree | 830f16a8853287c3922c236d108df084db232382 /BlankConsoleLab | |
| parent | 9 (diff) | |
| download | cst116-lab2-edwardfine-master.tar.xz cst116-lab2-edwardfine-master.zip | |
Diffstat (limited to 'BlankConsoleLab')
| -rw-r--r-- | BlankConsoleLab/CST116-Lab2-Edward-Fine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BlankConsoleLab/CST116-Lab2-Edward-Fine.cpp b/BlankConsoleLab/CST116-Lab2-Edward-Fine.cpp index dd14e20..53ccefd 100644 --- a/BlankConsoleLab/CST116-Lab2-Edward-Fine.cpp +++ b/BlankConsoleLab/CST116-Lab2-Edward-Fine.cpp @@ -18,7 +18,7 @@ int main() int degree=122; int windSpeed = 232; float windChill; - cout << "Are you inputting temperature in celcius or fahrenheit? C/f? "; + cout << "Are you inputting temperature in celcius or fahrenheit? Type C/f? "; cin >> temp; if (temp == 'c' || temp == 'C') { while (degree < -62 || degree > 49.5) { |