PHP Patterns October 08, 2021 <?phpfunction pypart($n){ for ($i = 0; $i < $n; $i++) { for($j = 0; $j <= $i; $j++ ) { echo "* "; } echo "\n"; }} $n = 5; pypart($n);?> Share Get link Facebook X Pinterest Email Other Apps Labels patterns Php Share Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment