Code:
#include <iostream.h>
#include <stdlib.h>
int main()
{
cout<<"Welcome to Tic-Tac-Toe\n";
cout<<"What do you wish to do?\n";
cout<<"1.New Game\n";
cout<<"2.Options\n";
cout<<"3.Quit\n";
int mainmenunumber;
int difficulty;
cin>>mainmenunumber;
if (mainmenunumber=2)
{
system("CLRSCR");
cout<<"Welcome to the Options Menu\n";
cout<<"1.Difficulty\n";
cout<<"2.Back\n";
int optionsmenu;
cin>>optionsmenu
if (optionsmenu=1)
{
system("CLRSCR");
cout<<"What difficulty lvl do you want?";
}
system("PAUSE");
return 0;
}
Does anyone notice any problems?

[edit]Nice try with the code tags, you used the wrong slash though. I've changed it for now. Hammer.