summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
diff options
context:
space:
mode:
author[email protected] <[email protected]>2022-10-05 16:33:20 -0700
committer[email protected] <[email protected]>2022-10-05 16:33:20 -0700
commit00eb1f9e46c9d7cd890afd145fd73d6777b1af2a (patch)
tree85a72b6307e6cadf4d7d24f1ebfc8c5a532f4718 /BlankConsoleLab/BlankConsoleLab.cpp
parentPush 6 (diff)
downloadcst116-lab1-smith-00eb1f9e46c9d7cd890afd145fd73d6777b1af2a.tar.xz
cst116-lab1-smith-00eb1f9e46c9d7cd890afd145fd73d6777b1af2a.zip
Push I lost count
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp27
1 files changed, 14 insertions, 13 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp
index 3167a0e..b37bc81 100644
--- a/BlankConsoleLab/BlankConsoleLab.cpp
+++ b/BlankConsoleLab/BlankConsoleLab.cpp
@@ -3,6 +3,7 @@
* CST116
* Lab 1
* Input and Output and If statements
+* Loops and Simple Calculations
*/
#include <iostream>
@@ -12,7 +13,8 @@ using std::cout;
using std::endl;
//Initializing Variables
-float w, l, area, aspect_ratio;
+float w, l, area, aspect_ratio, mass;
+const float mass_per = .135;
int main()
{
@@ -23,6 +25,8 @@ int main()
cout << "That number is invalid. Please try again with a number between 1 and 400." << endl;
cin >> w;
}
+
+
cout << "Now please input the length of the kite in centimeters." << endl;
cin >> l;
while (l < 1 || l > 400) {
@@ -34,27 +38,24 @@ int main()
area = (w * l) / 2;
area /= 10000;
+
//Displaying the area in square meters
cout << "The area of the kite in square meters is: " << area << endl << endl;
+
//Setting the aspect ratio of width to length
aspect_ratio = w / l;
+
//Determining if the aspect ratio is too high
if (aspect_ratio >= 1) {
cout << "Your aspect ratio of width to length is: " << aspect_ratio << ", which is quite high." << endl << "It is recommended to use a smaller aspect ratio to maintain stability." << endl << endl;
}
+
+ mass = mass_per * area;
+ cout << "The total mass of your kite is: " << mass << " kg." << endl << endl;
+
+
return 0;
-}
-
-// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
-// Debug program: F5 or Debug > Start Debugging menu
-
-// Tips for Getting Started:
-// 1. Use the Solution Explorer window to add/manage files
-// 2. Use the Team Explorer window to connect to source control
-// 3. Use the Output window to see build output and other messages
-// 4. Use the Error List window to view errors
-// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
-// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
+} \ No newline at end of file