C# program to print the multiplication table of a given number.

Problem

Write a program in Microsoft Visual C# that takes a number as input and prints its multiplication table.

Solution

using System;

namespace AbundantcodeApp
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Abundantcode.com coding sample");
            int number;
            Console.WriteLine("Enter the Number : ");
            number = int.Parse(Console.ReadLine());
            for (int i = 1; i <= 10; i++)
                Console.WriteLine(number + " x " + i + " = " + number * i);         
            Console.Read();
        }
    }
}

Output

Abundantcode.com coding sample

Enter the Number :

5

5 x 1 = 5

5 x 2 = 10

5 x 3 = 15

5 x 4 = 20

5 x 5 = 25

5 x 6 = 30

5 x 7 = 35

5 x 8 = 40

5 x 9 = 45

5 x 10 = 50

%d