Skip to content

Instantly share code, notes, and snippets.

@tieutantan
Last active January 19, 2021 03:54
Show Gist options
  • Save tieutantan/880f6365052c3bed7bcdbc5402c7893c to your computer and use it in GitHub Desktop.
Save tieutantan/880f6365052c3bed7bcdbc5402c7893c to your computer and use it in GitHub Desktop.
Rate times counter
<?php
$base = 15000000;
$rate = 0.04;
$i = 1;
while ($i <= 102) {
$base += $base * $rate;
echo PHP_EOL . $i . ' - ' . number_format($base);
$i++;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment