Showing posts with label inverted left half pyramid program with code. Show all posts
Showing posts with label inverted left half pyramid program with code. Show all posts

Friday, May 31, 2024

php program to print inverted left half pyramid pattern

php program to print inverted left half pyramid

php program to print inverted left half pyramid


php program to print inverted left half pyramid

Example :-

<?php
for($i=1;$i<=6;$i++)
{
    for($j=1; $j<=$i;$j++)
    {
        echo "&nbsp;&nbsp;";
        }
        for($l=5;$l>=$i;$l--)
        {
            echo '*';
        }
        echo '<br>';
}
?>

php program to print inverted left half pyramid

Output:-

php program to print inverted left half pyramid


Related post :-

square pattern in php

reverse right half pyramid in php

print left half pyramid in php

inverted pyramid star pattern in php

PHP Program to Print Alphabet Pattern H

print half diamond pattern

print diamond pattern program php