我正在尝试找到解决方案a^10-b^15 = 10510100501
有没有办法找到它?
我用 PHP 编写了以下代码,但没有结果:
<?php
$total = 0;
$a=0;
$b=0;
for($b=0;$b<10000;$b++){
for($a=0;$a<10000;$a++){
$total = pow($a,10) - pow($b,15);
if($total == 10510100501){ echo $a." ".$b; }
if($total > 10510100501){ continue;}
}
}
echo "none";
?>