aboutsummaryrefslogtreecommitdiff
path: root/Project2.cpp
diff options
context:
space:
mode:
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);
+ }
+}