Advertisement
ferdhika31

Segitiga Kagigir

Oct 24th, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2.     for($x=1;$x<=22;$x++)
  3.     {
  4.         for($z=1;$z<=$x;$z++)
  5.         {
  6.             $tampil = $x;
  7.             echo "*";
  8.         }
  9.         echo "<br>";
  10.     }
  11.     for($f=21;$f>=1;$f--)
  12.     {
  13.         for($e=1;$e<=$f;$e++)
  14.         {
  15.             $tampils = $f;
  16.             echo "*";
  17.         }
  18.         echo "<br>";
  19.     }
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement