Advertisement
ini_PlayeR

While_3

Apr 14th, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.72 KB | None | 0 0
  1. <form method="post" action="">
  2.     Masukkan saldo anda <input type="text" name ="saldo"><br>
  3.     Masukkan jumlah bulan <input type="text" name ="bulan"><br>
  4.     <input type="submit" name="submit" value="submit">
  5.     <input type="reset" name="reset" value="reset">
  6. </form>
  7.  
  8. <?php
  9.     $s=$_POST[saldo];
  10.     echo"Saldo yang anda input adalah Rp ".round($s,0)."<br>";
  11.     $b=$_POST[bulan];
  12.     echo"Jumlah bulan yang anda input adalah ".$b." bulan<br>";
  13.     $x=1;
  14.     while($x<=$b)
  15.     {
  16.         if($s<1100000)
  17.         {
  18.             $s=((0.03*$s)+$s)-9000;
  19.         }
  20.         else
  21.         {
  22.             $s=((0.04*$s)+$s)-9000;
  23.         }
  24.         $x++;
  25.     }
  26.     echo"Saldo anda sekarang adalah Rp ".round($s,0);
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement