Showing posts with label reverse pyramid. Show all posts
Showing posts with label reverse pyramid. Show all posts

Friday, May 31, 2024

Program to print inverted Pyramid star pattern in php

Inverted Pyramid star pattern in php

 Inverted Pyramid star pattern in php

Example :-

<?php
echo "<pre>";
$n =10;
for($a=10; $a>0;$a--)
{
  for($b=$n-$a; $b>0; $b--)
  echo "&nbsp;&nbsp;";
for($b=2*$a-1; $b>0; $b--)
echo "&nbsp;*";
//change only  echo ""; value
    //for example :- 1,d,4,h,9,...etc
echo"<br>";
}
echo"</pre>";
?>

 Inverted Pyramid star pattern in php 

Output :-

inverted Pyramid star pattern in php

2] Inverted Pyramid star pattern in php

Example :-

<?php
echo "<pre>";
$n =10;
for($a=10; $a>0;$a--)
{
  for($b=$n-$a; $b>0; $b--)
  echo "&nbsp;&nbsp;";
for($b=2*$a-1; $b>0; $b--)
echo ("&nbsp;A");
//change only  echo ""; value
    //for example :- 1,d,4,h,9,...etc
echo"<br>";
}
echo"</pre>";
?>

 Inverted Pyramid star pattern in php 

Output :-

inverted Pyramid star pattern in php


Related Post :-

reverse right half pyramid in php

square pattern in php

PHP Program to Print Alphabet Pattern H

PHP Program to print Alphabet Pattern B

 php program to print alphabet pattern j

 php program to print alphabet pattern l