Advertisement
ini_PlayeR

While_5

Apr 14th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. <form method="post" action="">
  2.     Masukkan jumlah bintang terbanyak <input type="text" name ="jum"><br>
  3.     <input type="submit" name="submit" value="submit">
  4.     <input type="reset" name="reset" value="reset">
  5. </form>
  6.  
  7. <?php
  8.     $jum=$_POST[jum];
  9.     $i=1;
  10.     while($i<=$jum)
  11.     {
  12.         $a=1;
  13.         while ($a<=$i)
  14.         {
  15.             echo "*";
  16.             $a++;
  17.         }
  18.         $i++;
  19.         echo "<br>";
  20.     }
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement