summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjacobdw22 <[email protected]>2022-10-06 15:35:18 -0700
committerjacobdw22 <[email protected]>2022-10-06 15:35:18 -0700
commitc662c463217eda42dec2adbacd5597f5b1a84894 (patch)
treeb3b1a0acad5bb26c4f306548b10287a162ba974b
parentsimple changes (diff)
downloadcst116-lab1-jacobdw22-c662c463217eda42dec2adbacd5597f5b1a84894.tar.xz
cst116-lab1-jacobdw22-c662c463217eda42dec2adbacd5597f5b1a84894.zip
simple changes
-rw-r--r--BlankConsoleLab/cst116-lab1-wilson.cpp4
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.";
}