diff options
| author | Joe Traver <[email protected]> | 2022-10-18 20:59:00 -0700 |
|---|---|---|
| committer | Joe Traver <[email protected]> | 2022-10-18 20:59:00 -0700 |
| commit | ec17ea2e6f0a636d86352461fe4355d080cf5fef (patch) | |
| tree | c276d415aaa84d14e162c659b35fe777560e38f5 /BlankConsoleLab/BlankConsoleLab.cpp | |
| parent | Step 6 Complete. Changed varable wording of height to length (diff) | |
| download | cst116-lab1-joetraver30-ec17ea2e6f0a636d86352461fe4355d080cf5fef.tar.xz cst116-lab1-joetraver30-ec17ea2e6f0a636d86352461fe4355d080cf5fef.zip | |
Stage 7 Complete
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 8d2c501..82b9c16 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -41,5 +41,11 @@ int main() // aspect ratio ratio = width / length; -} + + if (ratio > 1) + cout << "WARNING! A lower aspect ratio would provide more stability" << endl; + + return 0; +} + |