diff options
| author | EdwardFine <[email protected]> | 2022-11-08 23:51:10 -0800 |
|---|---|---|
| committer | EdwardFine <[email protected]> | 2022-11-08 23:51:10 -0800 |
| commit | 3ddd0b9c5cc646f9cdced9abbfc019f4624717e6 (patch) | |
| tree | 9ae145e12d4d136fd8a136a1e8c5fa4fc70f7bce | |
| parent | 7 (diff) | |
| download | cst116-lab2-edwardfine-3ddd0b9c5cc646f9cdced9abbfc019f4624717e6.tar.xz cst116-lab2-edwardfine-3ddd0b9c5cc646f9cdced9abbfc019f4624717e6.zip | |
8
| -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..0406b8d 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 tedmperature in celcius or fahrenheit? C/f? "; cin >> temp; if (temp == 'c' || temp == 'C') { while (degree < -62 || degree > 49.5) { |