aboutsummaryrefslogtreecommitdiff
path: root/Project2.cpp
diff options
context:
space:
mode:
authorJacobAKnox <[email protected]>2021-10-27 20:38:30 -0700
committerJacobAKnox <[email protected]>2021-10-27 20:38:30 -0700
commit677e0bb832c9cc9c69544ed41d9eac98bf5a30ec (patch)
treeb710ed1529645f259a781783ca5284fdf7c9d868 /Project2.cpp
parentAdd online IDE url (diff)
downloadcst116proj2-1-jacob-k-and-austin-g-677e0bb832c9cc9c69544ed41d9eac98bf5a30ec.tar.xz
cst116proj2-1-jacob-k-and-austin-g-677e0bb832c9cc9c69544ed41d9eac98bf5a30ec.zip
Adding my work so far
Diffstat (limited to 'Project2.cpp')
-rw-r--r--Project2.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/Project2.cpp b/Project2.cpp
new file mode 100644
index 0000000..80954a6
--- /dev/null
+++ b/Project2.cpp
@@ -0,0 +1,18 @@
+// Project2.cpp : This file contains the 'main' function. Program execution begins and ends there.
+// Written by Jacob Knox
+//
+
+#include <iostream>
+#include "header.h"
+
+using namespace std;
+
+int main()
+{
+ int num = 10, choice = 0;
+ while (choice != 7)
+ {
+ DisplayMenu(choice);
+ ProcessMenuChocie(choice, num);
+ }
+}