Showing posts with label Pattern. Show all posts
Showing posts with label Pattern. Show all posts

Tuesday, May 28, 2024

PHP Program to print Alphabet Pattern F

 

PHP Program to print Alphabet Pattern F

PHP Program to print Alphabet Pattern F


Example :-

<?php
echo "<pre>";
for($row=0;$row<11;$row++){
    for($col=0;$col<=11;$col++)
    {
        if($col ==1 OR (($row==0 or $row==4)
AND $col>1
        AND $col<15)OR($col==9 AND $row!=1
AND $row<1)
        OR($col==$row-10 AND $row >15))
        {
            echo"*";
        }
        else {
            echo "&nbsp;";
        }
        }
        echo "<br>";
    }
    echo "</pre>";
?>


PHP Program to print Alphabet Pattern F

Output :-

PHP Program to print Alphabet Pattern F

Related Post :-

PHP Program to print Alphabet Pattern P

PHP Program to print Alphabet Pattern H