Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Monday 31 October 2016

Pattern printing program

Pattern Number #21

          A
        A B A
      A B C B A
    A B C D C B A
  A B C D E D C B A

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.
 
Pattern printing program

Note: If you are new to C# and Console Application. Try to code First C# Program

Note: Read articles on how to use Loops and Conditions.

Let’s find out a simple and easy way to code these pattern.

Practical Implementation:

using System;

namespace patternProblem
{
    class Pattern21
    {
        public static void Main()
        {
            Console.WriteLine("Enter iteration times: ");
            int n = Convert.ToInt32(Console.ReadLine());
            int j;
            Console.WriteLine("-----Output-----");
            Console.WriteLine();
            for (int i = 1; i <= n; i++)
            {
                for (j = n; j >= i; j--)
                {
                    Console.Write("  ");
                }

                for (j = 1; j <= i; j++)
                {
                    Console.Write((char)(j + 64) + " ");
                }
                for (j = j - 2; j >= 1; j--)
                {
                    Console.Write((char)(j + 64) + " ");
                }

                Console.WriteLine();
            }

            Console.ReadKey();
        }
    }
}

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

Enter iteration times:
5
-----Output-----

          A
        A B A
      A B C B A
    A B C D C B A
  A B C D E D C B A
 Press any key to continue . . .


For any query, comment us below.

Skip to Main Table Pattern printing program

Previous - Pattern printing program #20


Click imagination hunt to read latest blogs.


Keep learning and sharing...
Read More »

Sunday 30 October 2016

Pattern printing program

Pattern Number #20

       A
       B B
       C C C
       D D D D

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.
 
Pattern printing program

Note: If you are new to C# and Console Application. Try to code First C# Program

Note: Read articles on how to use Loops and Conditions.

Let’s find out a simple and easy way to code these pattern.

Practical Implementation:

using System;

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

            Console.WriteLine("-----Output-----");
            Console.WriteLine();
            for (int i = 1; i <= n; i++)
            {
                for (int j = 1; j <= i; j++)
                {
                    //Console.Write("*");
                    Console.Write((char)(i + 64) + " ");
                }
                Console.WriteLine();
            }

            Console.ReadKey();
        }
    }
}

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

Enter iteration times:
4
-----Output-----

A
B B
C C C
D D D D
 Press any key to continue . . .


For any query, comment us below.

Skip to Main Table Pattern printing program

Previous - Pattern printing program #19


Click imagination hunt to read latest blogs.


Keep learning and sharing...
Read More »

Saturday 29 October 2016

Pattern printing program

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.
 
Pattern printing program

Note: If you are new to C# and Console Application. Try to code First C# Program

Note: Read articles on how to use Loops and Conditions.

Let’s find out a simple and easy way to code these pattern.

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:

Enter iteration times:
4
-----Output-----

1
2 3
4 5 6
7 8 9 10
 Press any key to continue . . .


For any query, comment us below.

Skip to Main Table Pattern printing program

Previous - Pattern printing program #18


Click imagination hunt to read latest blogs.


Keep learning and sharing...
Read More »

Featured post

Think that makes you rich and richer

 Napolean said: “You can think and grow rich, but if you can be brought up like most people with work and you won't starve, this wil...