summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CST116-Lab1-Bishop-Submission1.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/CST116-Lab1-Bishop-Submission1.cpp b/CST116-Lab1-Bishop-Submission1.cpp
new file mode 100644
index 0000000..7b934cb
--- /dev/null
+++ b/CST116-Lab1-Bishop-Submission1.cpp
@@ -0,0 +1,30 @@
+//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;
+
+
+}
+