summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliamBishopCST116 <[email protected]>2022-10-17 11:05:49 -0700
committerGitHub <[email protected]>2022-10-17 11:05:49 -0700
commit8daf9f3e5b7dcccc0d01103a4db031625a30ba83 (patch)
tree7f0e24976933edb888e61946b283a1a829557c15
parentSetting up GitHub Classroom Feedback (diff)
downloadcst116-lab1-williambishopcst116-8daf9f3e5b7dcccc0d01103a4db031625a30ba83.tar.xz
cst116-lab1-williambishopcst116-8daf9f3e5b7dcccc0d01103a4db031625a30ba83.zip
Add files via upload
-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;
+
+
+}
+