在本教程中,我们将学习如何在 PHP 中实现星形图案。在 PHP 中打印不同的图案简单易学。拥有 C 或 C++ 等其他编程语言的知识会更好。我们可以打印金字塔三角形图案、星形图案、数字图案等。我们将在本教程中从许多不同的图案中学习它们。我们使用 for 循环来打印这些图案。我们还可以使用 foreach 循环和嵌套 for 循环来打印这些模式。在这些嵌套循环中,我们将使用外循环和内循环来打印一种特定图案的星星。
广告 该类别中的热门课程 PHP 开发人员 - 专业化 | 8 门课程系列 | 3次模拟测试开始您的免费软件开发课程
网络开发、编程语言、软件测试及其他
以下是 PHP 中星形图案的 6 个示例:
代码:
<?php //example to demonstrate star pattern-1 for($i=0; $i<5; $i++) { for($j=0; $j<5; $j++) { echo '*'; } echo '<br>'; } ?>
输出:
在此示例中,i for 循环迭代 5 次,对于 i 的每个值,内部 j for 循环将迭代并打印为星号 *。 j for 循环用于打印星星。当i的初始值为1时,将打印一颗星。接下来,对于值 2,将打印一行两颗星,对于值 3,将打印三颗星,一直持续到值不大于 5。
代码:
<?php //example to demonstrate star pattern-2 for($i=1; $i<=5; $i++) { for($j=1; $j<=$i; $j++) { echo '*'; } echo '<br>'; } ?>
输出:
在此示例中,i for 循环将循环 5 次,因为我们需要 5 行。 j for 循环用于根据 i 的值打印 *。因为我们第一次希望第一行有 5 颗星,所以对于 i 的第一个值为 1 的情况,j 循环将打印 5 颗星。接下来,对于值 2,j 循环将打印 4 颗星,对于下一个值 3,j 循环将打印 3 次,依此类推。一旦 i 的条件大于 5,这将停止并打印所需的输出。
代码:
<?php //example to demonstrate star pattern-3 for($i=1; $i<=5; $i++) { for($j=5; $j>=$i; $j--) { echo '*'; } echo '<br>'; } ?>
输出:
在此示例中,值 I for 循环迭代了 5 次,因为星形图案中的行数为 5。同样在此示例中,我们使用 j for 循环来打印空格,新的 k for 循环为用于打印星星*.
代码:
<?php //example to demonstrate star pattern-4 for($i=1; $i<=5; $i++) { for($j=4; $j>=$i; $j--) //loop to print spaces { echo ' '; } for($k=1; $k<=$i; $k++) //loop to print stars { echo '*'; } echo '<br>'; } ?>
输出:
在此示例中,使用了三个循环,第一个循环用于计算行数,第二个循环用于打印空格,第三个循环用于打印星星。定义的两个循环都依赖于 i 的值。
代码:
<?php //example to demonstrate star pattern-5 for($i=1; $i<=6; $i++) { for($j=1; $j<=$i; $j++) //loop to print spaces { echo ' '; } for($k=5; $k>=$i; $k--) //loop to print stars { echo '*'; } echo '<br>'; } ?>
输出:
In this example, there is a combination of two stars patterns upper triangle and lower triangle. These triangles are already explained in the previous examples and for this, we use three loops, one for the number of rows, second for the printing of spaces and third for the printing of stars and this loop is repeated again with different initial values of i and j along with different conditions for the next half of the triangle pattern.
Code:
<?php //example to demonstrate star pattern-5 // this loop prints the upper half of the star pattern for($i=1; $i<=5; $i++) { for($j=1; $j<=$i; $j++) //loop to print spaces { echo '*'; } echo '<br>'; } // this loop prints the lower half of the pattern for($i=1; $i<=5; $i++) { for($j=4; $j>=$i; $j--) //loop to print stars { echo '*'; } echo '<br>'; } ?>
Output:
In this article, star patterns in PHP are explained. We have seen different forms of star patterns. These patterns are with an explanation of how the condition works, how the looping works to print the stars as desired.
以上是PHP 中的星形图案的详细内容。更多信息请关注PHP中文网其他相关文章!