PHP for loop Exercises: Print alphabet pattern F
18. Alphabet Pattern 'F'
Write a PHP program to print alphabet pattern F.
Visual Presentation:

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 ($row == 0 and $column > 1 and $column > 6) or ($row == 3 and $column > 1 and $column < 5))
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 uses 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 conditions:
- If the column is at index 1.
- If the row is at index 0 and the column is between indices 2 and 5 (inclusive).
- If the row is at index 3 and the column is between indices 2 and 4 (inclusive).
- If any of these conditions are met, an asterisk ( '*') is echoed out. Otherwise, a space ( ) is echoed out.
- 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 ?>.
- Write a PHP script to print the letter 'F' using nested loops, ensuring the top horizontal line is complete and the middle is partial.
- Write a PHP function to construct the 'F' pattern based on input size and display dynamic spacing for the vertical line.
- Write a PHP program to output an 'F' pattern that varies in width and height, using loops to manage the pattern flow.
- Write a PHP script to generate a letter 'F' that includes a customizable gap between the horizontal and vertical segments.
Flowchart :

For more Practice: Solve these Related Problems:
Go to:
PREV : Alphabet Pattern 'E'.
NEXT : Alphabet Pattern 'G'.
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.