Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

C# Number Pattern 48

Posted in C# Tutorial
Updated on Jan 10, 2024
By Mari Selvan
👁️ 205 - Views
⏳ 4 mins
💬 1 Comment
C# Number Pattern 48

Photo Credit to CodeToFun

C# Number Pattern 48

Here`s a program that prints the above number pattern using C# Programming:

example.cs
Copied
Copy To Clipboard
using System;

namespace myApp {
  class Program {
    static void Main(string[] args) {
      int i, res = 1;
      for (i = 1; i <= 5; i++) {
        if (i == 1)
          res = i;
        else
          res = res * 11;
        Console.Write(res);
        Console.WriteLine();
      }
    }
  }
}

💻 Testing the Program

When you run the above program, it will print the following output:

Output
1
11
121
1331
14641

🧠 How the Program Works

Let's break down the logic behind the code:

  1. The using System; statement includes the System namespace, which contains fundamental types and classes that are used in the program.
  2. The program declares a new namespace called myApp. Namespaces are used to organize code into logical groups.
  3. Within the myApp namespace, there's a class called Program. C# programs typically start execution from the Main method within a class named Program.
  4. The Main method is declared as static and takes a string array args as its parameter. This is the entry point of the program, and it can receive command-line arguments if any.
  5. Inside the Main method, two integer variables are declared: i and res. The variable res is initialized to 1.
  6. The program enters a for loop that iterates from i = 1 to i <= 5. The loop increments the value of i by 1 in each iteration.
  7. Inside the loop, there's an if-else statement. If the value of i is equal to 1, res is assigned the value of i (which is 1). This is the initial value of res.
  8. If the value of i is not 1 (i.e., for iterations where i is 2 to 5), the else block is executed. In this block, the value of res is multiplied by 11 and the result is stored back in res. This results in the value of res being updated to res * 11 in each iteration.
  9. After the conditional block, the program prints the value of res using Console.Write(res), and then a newline is printed using Console.WriteLine() to move to the next line for the next iteration.
  10. The loop continues until i becomes 6. At this point, the loop condition i <= 5 becomes false, and the loop terminates.
  11. The program then finishes its execution.

💯 Tips for Enhancement:

Explore the versatility of this pattern by adjusting its parameters. Whether you increase or decrease the size, tweak the spacing, or modify the characters used, each change opens up a world of possibilities, allowing you to customize and create your unique visual effects.

✔ Conclusion:

Creating visually appealing patterns is not only a fun endeavour but also a great way to enhance your programming or design skills. We hope this tutorial has inspired you to explore the world of creative coding. Share your creations with us, and let your imagination run wild!

🤗 Closing Call-to-Action:

We'd love to see your unique interpretations of the number pattern. Share your creations in the comments below, and don't hesitate to reach out if you have any questions or suggestions for future tutorials. Happy coding!

👨‍💻 Join our Community:

To get interesting news and instant updates on Front-End, Back-End, CMS and other Frameworks. Please Join the Telegram Channel:

Author

author
👋 Hey, I'm Mari Selvan

For over eight years, I worked as a full-stack web developer. Now, I have chosen my profession as a full-time blogger at codetofun.com.

Buy me a coffee to make codetofun.com free for everyone.

Buy me a Coffee

Share Your Findings to All

Subscribe
Notify of
guest
1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Mari Selvan
Mari Selvan
9 months ago

If you have any doubts regarding this article (C# Number Pattern 48) please comment here. I will help you immediately.

We make use of cookies to improve our user experience. By using this website, you agree with our Cookies Policy
AgreeCookie Policy