So i have a code for a menu and i am facing some problem..
code:-
do
{
ch = getch();
switch(ch)
{
case 'W':
case 'w':
system("CLS");
cout<<" MOD v1.0\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
cout << " --> PLAY\n\n";
cout<<" HELP\n\n";
cout<<" EXIT\n\n";
break;
case 'E':
case 'e':
system("CLS");
cout<<" MOD v1.0\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
cout << " PLAY\n\n";
cout<<" --> HELP\n\n";
cout<<" EXIT\n\n";
break;
case 'R':
case 'r':
system("CLS");
cout<<" MOD v1.0\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
cout << " PLAY\n\n";
cout<<" HELP\n\n";
cout<<" --> EXIT\n\n";
break;
}
}while (ch != 'Q' && ch!='q');
so what is want is that when I press enter it should take me to a new screen, a new screen for each option....
please help