Well, if you enter 1, then the continue causes the rest of the do block to be skipped. Since the condition enter!=1 is false (enter is 1, after all), the loop won't be continued.
If you enter 2, the loop is broken by the break statement (Game Over will never be printed because of that, by the way).