summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdwardFine <[email protected]>2022-11-08 23:52:02 -0800
committerEdwardFine <[email protected]>2022-11-08 23:52:02 -0800
commit5b8d745ee7a73bf39824af67b860cbfbdca02966 (patch)
tree830f16a8853287c3922c236d108df084db232382
parent9 (diff)
downloadcst116-lab2-edwardfine-master.tar.xz
cst116-lab2-edwardfine-master.zip
Final code + PseudoCodeHEADmaster
-rw-r--r--BlankConsoleLab/CST116-Lab2-Edward-Fine.cpp2
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) {