If you are new to C# and Console Application.How to print pattern

Pattern Number #19 (Floyd’s triangle)


          1
          2 3
          4 5 6
          7 8 9 10

The program for the pattern is written in C# programming language and will accept a number as input. The loops will iterate based on the number of entry.




Practical Implementation:


using System;

namespace patternProblem
{
    class Pattern19
    {
        public static void Main()
        {
            Console.WriteLine("Enter iteration times: ");
            int n = Convert.ToInt32(Console.ReadLine());
            int temp = 1;

            Console.WriteLine("-----Output-----");
            Console.WriteLine();
            for (int i = 1; i <= n; i++)
            {
                for (int j = 1; j <= i; j++)
                {
                    temp = j + (temp - j);
                    Console.Write(temp + " ");

                    temp = temp + 1;
                }
                Console.WriteLine();
            }

            Console.ReadKey();
        }
    }
}

Output:
The input number here is 4. So, the program will iterate four times. The output is shown below:


          1
          2 3
          4 5 6

          7 8 9 10


Comments

Popular posts from this blog