i want to make 4 choices. and i want to let user to use up down right left key to choose the choices.
#include <iostream>
using namespace std;
int main ()
{
int choices;
do
{ cout<<"1. play"<<endl;
cout<<"2. option"<<endl;
cout<<"3. help"<<endl;
cout<<"4. quit"<<endl;
cin>>choices;
} while (choices != 4);
return 0;
}