16 lines
297 B
PHP
16 lines
297 B
PHP
<?php
|
|
echo "Hello,not so heavy stuff here:\n";
|
|
|
|
function someReallyHeavyStuff($lima, $limb){
|
|
$result=0;
|
|
for($i=0;$i<$lima;$i++){
|
|
$result+=($i*$limb)+(($limb-1)*$limb)/2;
|
|
}
|
|
return $result;
|
|
}
|
|
|
|
$result = someReallyHeavyStuff(100000,100000);
|
|
|
|
echo "The not so heavy result: $result\n"
|
|
|
|
?>
|