#include using namespace std; int main() { enum category { Faculty, Staff, Grad, Undergrad }; int employee = Staff; switch(employee) { case Faculty: cout << "Your parking fee is $400." << endl; break; case Staff: cout << "Your parking fee is $350." << endl; break; case Grad: cout << "Your parking fee is $200." << endl; break; case Undergrad: cout << "Your parking fee is $100." << endl; break; default: cout << "Wrong input, employee category not recognized." << endl; break; } }