NastySwipy

Drawing Figures with Loops - Christmas Tree

Feb 12th, 2018
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. $num = intval(readline());
  2. for ($i = 0; $i <= $num; $i++) {
  3.     echo str_repeat(" ", $num - $i) . str_repeat("*", $i) . " | " . str_repeat("*", $i) . "\n";
  4. }
Advertisement
Add Comment
Please, Sign In to add comment