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 :-

css introduction

php arithmetic operators

php program to print hollow triangle star pattern

Comments

Popular posts from this blog

What Is CSS Text Color in 2026

CSS Padding Property Explained

CSS Outline Color Property in 2026