When you want your code to run a certain amount of times, you use the For loop. Here's an example,


for(int i = 0; i < 10; i++)
{
//code in here
}

You can also ask the user how many...