Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

C# Number Pattern 18

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

Photo Credit to CodeToFun

C# Number Pattern 18

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, j, k;
      for (i = 1; i <= 5; i++) {
        if (i % 2 == 0)
          k = 2;
        else
          k = 1;
        for (j = 1; j <= i; j++) {
          Console.Write(k + " ");
          k += 2;
        }
        Console.WriteLine();
      }
    }
  }
}

💻 Testing the Program

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

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

🧠 How the Program Works

Let's break down the logic behind the code:

  1. Importing the System namespace: The program starts with the using System; statement. This allows the code to use classes and functions from the System namespace, which contains fundamental types and classes like Console.
  2. Creating the myApp namespace: The program defines a namespace called myApp. Namespaces help organize code and prevent naming conflicts.
  3. Defining the Program class: Within the myApp namespace, there is a class named Program. This class contains the Main method, which serves as the entry point of the program.
  4. Declaring variables: Inside the Main method, three integer variables are declared: i, j, and k. These variables will be used in the loops and other calculations.
  5. Outer for loop: The program enters a for loop with i initialized to 1, and it will iterate as long as i is less than or equal to 5 (i <= 5). After each iteration, i is incremented by 1 (i++).
  6. Inner if-else statement: Within the outer for loop, there's an if-else statement. It checks whether i is even (i % 2 == 0). If i is even, k is assigned the value of 2; otherwise, it is assigned the value of 1.
  7. Inner for loop: After determining the value of k, the program enters an inner for loop with j initialized to 1. It will iterate as long as j is less than or equal to i (j <= i). After each iteration, j is incremented by 1 (j++).
  8. Writing the output: Inside the inner for loop, the program prints the value of k followed by a space using Console.Write(k + " ");. Then, it increments k by 2 (k += 2) to get ready for the next iteration of the inner loop.
  9. Newline: After completing the inner for loop, the program writes a newline character (\n) using Console.WriteLine();. This moves the output to the next line before the next iteration of the outer for loop.
  10. Repeat: The outer for loop continues to iterate as long as the condition i <= 5 is true, and the inner loops are executed accordingly.

💯 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 18) 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