Mon Oct 27, 2008 1:09 pm
<?
function maxint(){
$to_test = 2;
while(1){
$last = $to_test;
$to_test = 2 * $to_test;
if (($to_test < $last) || (!is_int($to_test))){
return($last + ($last - 1));
}
}
}
$maxint = maxint();
print("Maxint is $maxint<BR>");
?>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.