<?php function Wydajnosc($rejsy) { $rejsy = (int)$rejsy; if($rejsy) { return (0.125 * floor(log($rejsy, 2))) + 1; } else { return 1; } } echo Wydajnosc(250);
You have javascript disabled. You will not be able to edit any code.