diff options
| author | jacobdw22 <[email protected]> | 2022-10-06 15:35:18 -0700 |
|---|---|---|
| committer | jacobdw22 <[email protected]> | 2022-10-06 15:35:18 -0700 |
| commit | c662c463217eda42dec2adbacd5597f5b1a84894 (patch) | |
| tree | b3b1a0acad5bb26c4f306548b10287a162ba974b | |
| parent | simple changes (diff) | |
| download | cst116-lab1-jacobdw22-c662c463217eda42dec2adbacd5597f5b1a84894.tar.xz cst116-lab1-jacobdw22-c662c463217eda42dec2adbacd5597f5b1a84894.zip | |
simple changes
| -rw-r--r-- | BlankConsoleLab/cst116-lab1-wilson.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BlankConsoleLab/cst116-lab1-wilson.cpp b/BlankConsoleLab/cst116-lab1-wilson.cpp index 1f61197..089860b 100644 --- a/BlankConsoleLab/cst116-lab1-wilson.cpp +++ b/BlankConsoleLab/cst116-lab1-wilson.cpp @@ -32,10 +32,10 @@ int main() aspect_ratio = width / length; if (aspect_ratio >= 1) - cout << "WARNING! A lower aspect ratio will provide more stability."; + cout << "WARNING! Aspect ratio >= 1. Unstable."; else (aspect_ratio < 1); - cout << "Good aspect ratio."; + cout << "Aspect ratio < 1. Good aspect ratio."; } |