Front-end Tutorials

Front-end Tutorials

HTMLCSSSassJavaScriptReactJS
CMS Tutorials

CMS Tutorials

WordPress
Tutorials expand

PHP Number Pattern 57

Posted in PHP Tutorial
Updated on Jan 10, 2024
By Mari Selvan
👁️ 98 - Views
⏳ 4 mins
💬 1 Comment
PHP Number Pattern 57

Photo Credit to CodeToFun

PHP Number Pattern 57

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

example.php
Copied
Copy To Clipboard
<?php
for($i=1; $i<=5; $i++)
{
 for($j=5; $j>=1; $j--)
 {
  if($i == $j)
   echo $j;
  else
   echo "&nbsp;&nbsp;";
 }
 for($k=2; $k<=5; $k++)
 {
  if($i == $k)
   echo $k;
  else
   echo "&nbsp;&nbsp;";
 }
 echo "<br>";
}
?>

💻 Testing the Program

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

Output
    1
   2 2
  3   3
 4     4
5       5

🧠 How the Program Works

Let's break down the logic behind the code:

  1. for($i=1; $i<=5; $i++): This initializes a loop that runs from 1 to 5, with the variable $i representing the current iteration.
  2. Inside the first loop, there are two nested loops:
    1. for($j=5; $j>=1; $j--): This initializes a loop that runs from 5 to 1 in reverse order, with the variable $j representing the current iteration. This loop is responsible for printing numbers in a decreasing order.
    2. Inside the $j loop, there's an if-else block:
      • if($i == $j): If the value of $i is equal to the value of $j, it means that the current row number ($i) matches the current column number ($j). In this case, the program echoes the value of $j, which is a number between 1 and 5.
      • else: If the values are not equal, the program echoes &nbsp;&nbsp;, which represents two non-breaking space entities. This is used to create space between the numbers.
  3. After the first nested loop (loop $j), there's another nested loop:
    1. for($k=2; $k<=5; $k++): This initializes a loop that runs from 2 to 5, with the variable $k representing the current iteration. This loop is responsible for printing numbers in an increasing order, except for the first iteration.
    2. Inside the $k loop, there's an if-else block:
      • if($i == $k): If the value of $i is equal to the value of $k, it means that the current row number ($i) matches the current column number ($k). In this case, the program echoes the value of $k, which is a number between 2 and 5.
      • else: If the values are not equal, the program echoes &nbsp;&nbsp; to create space.
  4. echo "<br>";: After each iteration of the outermost loop ($i), this line is executed to print a line break, moving to the next row in the pattern.

💯 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
1 year ago

If you have any doubts regarding this article (PHP Number Pattern 57) 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