Home / utk / cs102 / fa16 / labf / code_snippets / misc / enum.old.cpp
Directory Listing
enum.cpp
enum.old.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>

using namespace std;

enum { ADD = 1, SUBTRACT, MULTIPLY, DIVIDE, EXPONENT } TYPEVAL;

void show_menu(int&);

int main() {
	
}

void show_menu(int &i) {
	//do {
		//Print the menu
	//}
	//while ( /* ... */ );
}