c750e12c5d36d7852e1c104ed972fa9069936c3c
[core.git] / contrib / exp / exp1.php
1 <?php
2 error_reporting(E_ALL | E_STRICT);
3
4 print 'Eat 1 apple at the first day and next day eat twice!' . PHP_EOL;
5
6 $years = 100;
7 $m = $years / 4;
8
9 $totalDays = ($years * 365 + $m);
10
11 $x = 1; $y = 0;
12 for ($i = 1; $i <= $totalDays; $i++) {
13         $x = bcmul($x, 2);
14         $y = bcadd($y, $x);
15 } // END - foreach
16
17 print 'After ' . $totalDays . ' days (' . $years . ' years) you have eaten ' . $y . ' fruits.' . PHP_EOL;
18 print 'Length:' . strlen($y) . PHP_EOL;