Print Star Triangles in PHP
Print Star Triangles in PHP <?php $nr=10; //Number of rows for($i=1; $i<=$nr ; $i++) // Outer loop { for($j=1; $j<=$i; $j++) // Inner loop { echo “*”; } echo “n”; // Statement for new line } ?> //Program execution // First iteration $i=1 and $j=1 i.e in first row * will print 1 time // […]
Print Star Triangles in PHP Read More »