✅ c# beginner help

Im wanting all of the times tables to list as soon as i click type the number and click enter but its making me click enter to display each time table. Thanks

Console.WriteLine("Enter number to see times table!");
int multiple = Convert.ToInt32(Console.ReadLine());
for (int number = 0; number < 13; number++)
{
Console.ReadLine();

int result = multiple * number;
Console.WriteLine($"{number} * {multiple} = {result}");

}
Was this page helpful?