diff options
| author | JacobAKnox <[email protected]> | 2021-10-27 20:38:30 -0700 |
|---|---|---|
| committer | JacobAKnox <[email protected]> | 2021-10-27 20:38:30 -0700 |
| commit | 677e0bb832c9cc9c69544ed41d9eac98bf5a30ec (patch) | |
| tree | b710ed1529645f259a781783ca5284fdf7c9d868 /Project2.cpp | |
| parent | Add online IDE url (diff) | |
| download | cst116proj2-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.cpp | 18 |
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); + } +} |