Edit: re-read your code. How are you executing the program?(from an IDE? just through windows? command prompt?)...
Re-Edit:
Found the problem:
You don't specify that the user has to press enter anywhere, so the last cin.get(); just finishes the user input for the above line...
Change it to:
Code:
cin >> stone;
cin.ignore();//ignores the enter and takes the users input
Cheers,
Jamey