w3resource

PHP for loop Exercises: Print alphabet pattern Y


37. Alphabet Pattern 'Y'

Write a PHP program to print alphabet pattern 'Y'.

Visual Presentation:

PHP for loop Exercises: Print alphabet pattern Y

Sample Solution:

PHP Code:

<?php
// Loop for rows
for ($row=0; $row<7; $row++)
{
    // Loop for columns
    for ($column=0; $column<=7; $column++)
    {
        // Condition to determine whether to print '*' or ' '
        if ((($column == 1 or $column == 5) and $row < 2) or $row == $column and $column > 0 and $column < 4 or ($column == 4 and $row == 2) or (($column == 3) and $row > 3))
            echo "*";    // Print '*' if condition is met
        else  
            echo " ";    // Print ' ' if condition is not met
    }        
    echo "\n";    // Move to the next line after each row is printed
}
?>

Output:

 *   *                                                      
 *   *                                                      
  * *                                                       
   *                                                        
   *                                                        
   *                                                        
   * 

Explanation:

In the exercise above,

  • The code starts with a PHP opening tag <?php.
  • It utilizes a nested loop structure to iterate over rows and columns to create a specific pattern.
  • The outer loop (for ($row=0; $row<7; $row++)) controls the rows of the pattern, iterating from 0 to 6.
  • Inside the outer loop, there's another loop (for ($column=0; $column<=7; $column++)) that controls the columns, iterating from 0 to 7.
  • Within the inner loop, there's a conditional statement that determines whether to print an asterisk ('*') or a space ( ) based on the position of the current row and column indices.
  • The condition checks multiple cases:
    • If the column is at index 1 or 5 and the row index is less than 2.
    • If the row index is equal to the column index and the column index is between 1 and 3.
    • If the column is at index 4 and the row is at index 2.
    • If the column is at index 3 and the row index is greater than 3.
  • If any of these conditions are met, an asterisk ('*') is echoed. Otherwise, a space ( ) is echoed.
  • After printing each row, the code moves to the next line by echoing a newline character ('\n').
  • Once all rows and columns are printed according to the pattern, the PHP code ends with a closing PHP tag ?>.

Flowchart :

Flowchart: Print alphabet pattern Y

For more Practice: Solve these Related Problems:

  • Write a PHP script to create the letter 'Y' pattern using loops so that the upper part forms a V and the lower part continues as a vertical line.
  • Write a PHP function to generate a scalable 'Y' pattern, adjusting the branching angles in the upper section.
  • Write a PHP program to output a 'Y' pattern with a dynamically determined split point for the vertical line.
  • Write a PHP script to print an alphabet 'Y' pattern ensuring the arms merge seamlessly into a single vertical line.

Go to:


PREV : Alphabet Pattern 'X'.
NEXT : Alphabet Pattern 'Z'.

PHP Code Editor:



Have another way to solve this solution? Contribute your code (and comments) through Disqus.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.