Mar 10, 2013 at 6:36am
OMG
Last edited on Apr 3, 2013 at 4:59am
Mar 10, 2013 at 7:02am
- I would do something like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
int choice;
do
{
// put your menu here, i assume you know how to do this
// put your prompts here as well
cin>>choice;
}
while (choice!=3)
|
Last edited on Mar 10, 2013 at 7:02am