php program to print triangle pattern on May 31, 2024 Get link Facebook X Pinterest Email Other Apps php program to print triangle patternphp program to print triangle patternExample :-<?php//Star Pyramid Size$size = 7;for($i=1;$i<=$size;$i++){ for($j=1;$j<=$size-$i;$j++) { echo " "; } for($k=1;$k<=$i;$k++){ echo "* "; }echo "<br />";}?>php program to print triangle patternOutput:-Related Post :-php program using sum of digitsregistration form in phparticle tag in htmlhow to create login form Comments
Comments
Post a Comment