summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp
index b0243ff..da5b275 100644
--- a/BlankConsoleLab/BlankConsoleLab.cpp
+++ b/BlankConsoleLab/BlankConsoleLab.cpp
@@ -7,7 +7,7 @@ int main()
int width, length;
float area, ratio;
- cout << "Kite Math 0.1" << endl;
+ cout << "Kite Math 0.2" << endl;
cout << "Please input the width of your kite:" << endl;
cin >> width;
cout << "Please input the length of your kite:" << endl;
@@ -19,5 +19,9 @@ int main()
area = (width * length) / 2;
area = area / 10000;
ratio = width / length;
+
+ if (ratio >= 1) {
+ cout << "A lower aspect ratio may provide more kit stability" << endl;
+ }
}