Advertisement
Rofihimam

Untitled

Oct 1st, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. <?php
  2.     $jumlah = 5;
  3.     for ($i = 1; $i <= $jumlah; $i++) {
  4.         for ($j = 1; $j <= $i; $j++) {
  5.             echo "X";
  6.         }
  7.         echo "<br />";
  8.     }
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement