fork download
  1. <?php
  2. $balance = 10000;
  3. for ($month = 1; $balance < 1000000; $month ++) {
  4. $balance = $balance*1.1;
  5. } $month1 = $month % 12;
  6. $year = ($month - $month1)/12;
  7. echo "Потребовалось $year лет $month1 месяцевю";
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
Потребовалось 4 лет 2 месяцевю