Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#include "jobmenu.h"
using namespace std;
void JobMenu::jobmenu()
{
int selection;
cout << "\n===================";
cout << "\n Job Menu";
cout << "\n===================";
cout << "\n 1 - Cleaning: 5";
cout << "\n 2 - Laundry: 10";
cout << "\n 3 - Jumble minigame: 20";
cout << "\n 4 - Go Back";
cout << "\n Enter selection: ";
cin >> selection;
if (selection == 1)
{
Alphabet a;
a.random_word();
a.user_input();
}
else if (selection == 2)
{
randomsequence();
//memorycheck(string &answer);
}
else if (selection == 3)
{
jumble();
}
else if (selection == 4)
{
cout << "0 - Chatroom." << endl;
cout << "1 - Game Menu." << endl;
cout << "2 - Job Menu." << endl;
cout << "3 - Library Menu" << endl;
cout << "Enter Selection:" << endl;
/*int menuInput;
cin >> menuInput;
JobMenu::update(menuInput);*/
}
}