It stops working because you have no code in those sections. If you choose 'B' you will execute this code:
else if (choice== 'B' || choice=='b') {
}
Which of course does nothing. Similarly after you create your arrays you don't do anything with them, so again it stops working.
Meanwhile I doubt you are intended to manually enter a bunch of numbers. You are likely supposed to generate them. To generate a random number between 'low' and 'high' you can do this:
int random = (rand() % (high-low)) + low
You can google search for "rand() C++" for more information.