Showing posts with label program to display table of given number.. Show all posts
Showing posts with label program to display table of given number.. Show all posts

Tuesday, September 2, 2014

program to display table of given number.


using System;

namespace Examples1
{
    class Program
    {
        static void Main(string[] args)
        {
            int num, i, result;
            Console.Write("Enter a number\t");
            num = Convert.ToInt32(Console.ReadLine());

            for (i = 1; i <= 10; i++)
            {
                result = num * i;
                Console.WriteLine("{0} x {1} = {2}", num, i, result);
            }
            Console.ReadLine();
        }
    }
}

 O/P: 8 *1 =8
          - - - -
 --- -
 --- 
8 * 10=80