Showing posts with label PHP Program to print Alphabet Pattern U. Show all posts
Showing posts with label PHP Program to print Alphabet Pattern U. Show all posts

Tuesday, May 28, 2024

PHP Program to print Alphabet Pattern U

 PHP Program to print Alphabet Pattern UUU


PHP Program to print Alphabet Pattern U


Example ::-

<?php
echo "<pre>";
for($row=0;$row<11;$row++){
    for($col=0;$col<=11;$col++)
    {
        if ($col ==2 OR (($row==10)AND $col>1
         AND $col<9)OR ($col==9 AND  $row<10) )
       
        {
            echo"U";
        }
        else {
            echo "&nbsp;";
        }
        }
        echo "<br>";
    }
    echo "</pre>";
?>

PHP Program to print Alphabet Pattern U

Output::-


Related Post::-