summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliamBishopCST116 <[email protected]>2022-10-17 11:28:36 -0700
committerGitHub <[email protected]>2022-10-17 11:28:36 -0700
commitf0206144826356f7a50eb7a6e3ccd63dd50da09d (patch)
treee0af6dfca875f1bb5d1a59988ce59258bf273aa3
parentAdd files via upload (diff)
downloadcst116-lab1-williambishopcst116-f0206144826356f7a50eb7a6e3ccd63dd50da09d.tar.xz
cst116-lab1-williambishopcst116-f0206144826356f7a50eb7a6e3ccd63dd50da09d.zip
Add files via upload
-rw-r--r--CST116-Lab1-Bishop-Submission6.cpp43
1 files changed, 43 insertions, 0 deletions
diff --git a/CST116-Lab1-Bishop-Submission6.cpp b/CST116-Lab1-Bishop-Submission6.cpp
new file mode 100644
index 0000000..a307a81
--- /dev/null
+++ b/CST116-Lab1-Bishop-Submission6.cpp
@@ -0,0 +1,43 @@
+//William Bishop
+
+// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there.
+//
+
+#include <iostream>
+
+using namespace std;
+
+using std::cout;
+using std::cin;
+using std::endl;
+
+int main()
+{
+ int kite;
+ int horizontal_kitew;
+ int vertical_kitel;
+
+ cout << "Please enter a width of the kite" << endl;
+ cin >> horizontal_kitew
+ cout << "Your width is: " << horizontal_kitew << endl;
+ cout << "Please enter your height of the kite " << endl;
+ cin >> vertical_kitel;
+ cout << "Our width and the height is: " << horizontal_kitew << "and " << vertical_kitel << endl;
+
+ int areaofkite;
+ int areaofkite = (horizontal_kitew * vertical_kitel) / 2;
+ cout << "The area of the kite is " << areaofkite;
+ float Area_of_kiteM;
+ float Area_of_kiteM = areaofkite / 10000;
+ cout << " " << Area_of_kiteM << endl;
+ float aspectratio;
+
+
+
+
+
+
+
+}
+