Posted by: ANS March 2, 2011
IT -- Solutions Center[Forum]
Login in to Rate this Post:     0       ?        
 Try following logic :



/ Loop through all operands in the multiplication table.
        for (int a = 1; a < firstNumber; a++)
        {
            for (int b = 1; b < secondNumber; b++)
            {
                // Write the multiplied number.
                Console.Write((a * b).ToString("00 "));
            }
            // New line.
            Console.WriteLine();
        }


Read Full Discussion Thread for this article