Home >Backend Development >PHP Tutorial >用php 求出a= ?该怎么解决

用php 求出a= ?该怎么解决

WBOY
WBOYOriginal
2016-06-13 11:55:191129browse

用php 求出a= ?
3480/pow(a,30) + 3480/pow(a,60) + 3480/pow(a,91) + 3480/pow(a,122) + 3480/pow(a,150) + 3480/pow(a,181) + 3480/pow(a,211) + 3480/pow(a,242) + 3480/pow(a,272) + 3480/pow(a,303) + 3480/pow(a,334) + 3480/pow(a,364) + 3480/pow(a,395) + 3480/pow(a,425) + 3480/pow(a,456) + 3480/pow(a,487) + 3480/pow(a,515) + 3480/pow(a,546) + 3480/pow(a,576) + 3480/pow(a,607) + 3480/pow(a,637) + 3480/pow(a,668) + 3480/pow(a,699) + 3480/pow(a,729)- 72000 = 0


------解决方案--------------------

本帖最后由 xuzuning 于 2014-03-28 09:54:05 编辑
$a = 1;<br />$k = 0.0000001;<br />do {<br />  $a += $k;<br />  $n = 3480/pow($a,30) + 3480/pow($a,60) + 3480/pow($a,91) + 3480/pow($a,122) + 3480/pow($a,150) + 3480/pow($a,181) + 3480/pow($a,211) + 3480/pow($a,242) + 3480/pow($a,272) + 3480/pow($a,303) + 3480/pow($a,334) + 3480/pow($a,364) + 3480/pow($a,395) + 3480/pow($a,425) + 3480/pow($a,456) + 3480/pow($a,487) + 3480/pow($a,515) + 3480/pow($a,546) + 3480/pow($a,576) + 3480/pow($a,607) + 3480/pow($a,637) + 3480/pow($a,668) + 3480/pow($a,699) + 3480/pow($a,729);<br />}while($n > 72000);<br />var_dump($n, $a);<br />
float(71999.790501071)
float(1.0004009000002)
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn