Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Saturday 31 December 2016

Pattern printing program

Pattern Number #74

155555
224444
333333
444422
555551

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 Pattern74
    {
        public static void Main()
        {
            Console.WriteLine("Enter iteration times: ");
            int n = Convert.ToInt32(Console.ReadLine());
            int i;
            int j;

            Console.WriteLine("-----Output-----");
            Console.WriteLine();

            int temp = n;
            for (i = 1; i <= n; i++)
            {
                for (j = 1; j <= i; j++)
                {
                    Console.Write(i);
                }
                for (j = n; j >= i; j--)
                {
                    Console.Write(temp);
                }
                temp = n - i;

                Console.WriteLine();
            }

        }
    }
}

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

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

155555
224444
333333
444422
555551
Press any key to continue . . .


For any query, comment us below.

Skip to Main Table Pattern printing program

Previous - Pattern printing program #73


Click imagination hunt to read latest blogs.


Keep learning and sharing...
Read More »

Friday 30 December 2016

Pattern printing program

Pattern Number #73

1
123
12345
1234567
123456789

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 Pattern73
    {
        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 = 0; i < n; i++)
            {
                for (j = 1; j <= (2 * i + 1); j++)
                {
                    Console.Write(j);
                }
                Console.WriteLine();
            }

            Console.ReadKey();
        }
    }
}

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

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

1
123
12345
1234567
123456789
Press any key to continue . . .


For any query, comment us below.

Skip to Main Table Pattern printing program

Previous - Pattern printing program #72


Click imagination hunt to read latest blogs.


Keep learning and sharing...
Read More »

Happy New Year 2017

Happy New Year
 
Its important to remember not everyone is looking forward to celebrate New Year. Some people are not surrounded by large families. Some have problems during the holidays and are overcome with great sadness when remembering the ones that are no longer with us. For many it may be the 1st New Year without a loved one or many may not have anyone to spend it with & find themselves besieged by loneliness. We All need caring loving thoughts right now. There are many among us that may be having health problems, family problems, job issues or worries of any kind. Let people know you care. A smile, a phone call, a kind gesture; simple things that have the ability to go a long way.
Read More »

Thursday 29 December 2016

Pattern printing program

Pattern Number #72

1
2 3
4 5 6
7 8 9 1
2 3 4 5 6

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 Pattern72
    {
        public static void Main()
        {
            Console.WriteLine("Enter iteration times: ");
            int n = Convert.ToInt32(Console.ReadLine());
            int j;
            int temp = 1;
            Console.WriteLine("-----Output-----");
            Console.WriteLine();

            for (int i = 1; i <= n; i++)
            {
                for (j = 1; j <= i; j++)
                {
                    if (temp > 9)
                    {
                        temp = 1;
                    }
                    Console.Write(temp + " ");
                    temp++;
                }
                Console.WriteLine();
            }

            Console.ReadKey();
        }
    }
}

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

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

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


For any query, comment us below.

Skip to Main Table Pattern printing program

Previous - Pattern printing program #71


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...