int playersNumber = -1;
while (playersNumber < 0 || playersNumber > 10)
{
Console.WriteLine("Enter a number between 0 and 10");
string playersResponse = Console.ReadLine();
playersNumber = Convert.ToInt32(playersResponse);
}
i entered this and it said it should keep looping until i enter a number between 0-10.
all i see on the console when i run "Enter a number between 0 and 10"
shouldn't i be seeing like -1 every like second going down the console until i enter a number between 0-10..?