Social Icons

Wednesday, 12 February 2014

Program to generate the table of numbers (range enters by user)

using System;

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            int i, l, h, s = 0, t = 0, t1 = 0;
            Console.WriteLine("\t Please Enter The Range ");
            Console.Write("\n Enter the lower range : ");
            l = int.Parse(Console.ReadLine());
            Console.Write("\n Enter the high range : ");
            h = int.Parse(Console.ReadLine());
            Console.WriteLine("");
            for (i = 1; i <= 10; i++)
            {
                t = l;
                t1 = h;
                while (t <= t1)
                {
                    s = 0;
                    s = t * i;
                    Console.Write(" "+s);
                    Console.Write("\t");
                    t++;

                }
                Console.WriteLine("");
            }
        }
    }
}

                                                          Output

No comments:

Post a Comment