#include "utility.h"
#include "queue.h"

#include <iostream>
#include <cctype>

using namespace std;

void main()
{
   
   char response;
  

   do
   {
	cout << "Welcome to the Switch test v1.0\n";
	cout << "Please select: \n\n";
	cout << "A - Do function A\n";
	cout << "B - Do function B\n";
	cout << "F - Do function F\n";
	cout << "X - Exit\n\n";
	cout << "Enter your choice: ";
	cin >> response;
	response = toupper(response);


	if(response == 'A')
	{
		// do something
		cout << "Something for A: " << endl;
	}

	if(response == 'B')
	{
		// do something
		cout << "Something for B: " << endl;
	}

	if(response == 'F')
	{
		// do something
		cout << "Something for F: " << endl;
	}

   }
   while (response != 'X');
}





