#include <iostream>
usingnamespace std;
enum TicTacToeBoard
{
TTT_Blank, TTT_O, TTT_X
};
int main()
{
TicTacToeBoard board_position = TTT_Blank;
int input;
cout << "Please Enter 1 for o and 2 for X" << endl;
cin >> input;
switch(input)
{
case TTT_Blank:
{
cout << "This is shit, You entered " << TTT_Blank << " which means blank, you idiot" << endl;
break;
}
case TTT_O:
{
cout << "You Entered " << TTT_O << " which means o, Good Job Mate" << endl;
break;
}
case TTT_X:
{
cout << "You Entered " << TTT_X << " which means X" << endl;
break;
}
default:
{
cout << "You Entered value which is not in scope, which basically means you are asshole" << endl;
}
}
}
I am asking this because i don't understand what he is trying to say. Is he asking me to make a game? I didn't learn any thing about game development.
Can I move on to the next chapter..........Have I learned enough to proceed?