We are providing online training of realtime Live project on Asp.Net MVC with Angular and Web API. For more information click here. If you have any query then drop the messase in CONTACT FORM

Tuesday, June 9, 2015


  1 2 3 4 5 4 3 2 1   
     1 2 3 4 3 2 1
        1 2 3 2 1
           1 2 1
              1
class Program
    {
        static void Main(string[] args)
        {
             Console.WriteLine("Enter number of lines");
            int n = int.Parse(Console.ReadLine());
            for (int row = 1; row <= n; row++)
            {
                for (int space = 1; space < row; space++)
                {
                    Console.Write(" ");
                }
                for (int col = 1; col <= (n + 1) - row; col++)
                {
                    Console.Write(col);
                }
                for (int col1 = n - row; col1 >= 1; col1--)
                {
                    Console.Write(col1);
                }
                Console.WriteLine();

            }
     Console.ReadLine();
        }

    



No comments: