summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
diff options
context:
space:
mode:
authorEvan <[email protected]>2022-10-19 03:39:11 -0700
committerEvan <[email protected]>2022-10-19 03:39:11 -0700
commit41c0f43f60ea45c437e4528b6d1897fad4307095 (patch)
tree5112f1f1954f60869497c3accb6de79d5702b16d /BlankConsoleLab/BlankConsoleLab.cpp
parents (diff)
downloadcst116-lab1-evanmihm-41c0f43f60ea45c437e4528b6d1897fad4307095.tar.xz
cst116-lab1-evanmihm-41c0f43f60ea45c437e4528b6d1897fad4307095.zip
now mass
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp
index e7ffca3..b77f07f 100644
--- a/BlankConsoleLab/BlankConsoleLab.cpp
+++ b/BlankConsoleLab/BlankConsoleLab.cpp
@@ -11,7 +11,7 @@ int main()
float Area;
float Area2;
float aspectr;
- //float celcius2 = 0;
+ float Mass;
cout << "What is the Width of your kite in centimeters? ";
cin >> Width;
@@ -29,10 +29,11 @@ int main()
cout << "Aspect Ratio = " << aspectr << endl;
if (aspectr >= 1)
- cout << "Your Aspect Ratio is > 1" << endl;
+ cout << "Your Aspect Ratio is greater than 1,\
+ lower aspect ratio would provide more stability" << endl;
else if (aspectr < 1)
- cout << "Your Aspect Ratio is < 1" << endl;
+ cout << "Your Aspect Ratio is less than 1, Good!" << endl;
return 0;
} \ No newline at end of file