Check out example codes for "c# loop 2 time tables". It will help you in understanding the concepts better.
Code Example 1
for (int i = 1; i <= 10; i++)
{
for (int j = 2; ;)
{
Console.WriteLine($"{j} x {i} = {i * j}");
break;
}
}
Console.ReadLine();
Learn ReactJs, React Native from akashmittal.com