php program to print inverted right half pyramid on May 31, 2024 Get link Facebook X Pinterest Email Other Apps php program to print inverted right half pyramidExample:-<?php for($i=0;$i<=5;$i++){ for($j=5-$i;$j>=1;$j--){ echo "* "; } echo "<br>"; } ?> php program to print inverted right half pyramidOutput:-Related Post:-css column gap propertyhtml iframephp program palindrome number Comments
Comments
Post a Comment