目前共有25篇帖子。
使用php的bcmath库,可以瞬间算出2的2010次方
22樓 巨大八爪鱼 2015-2-24 10:14
$num = 8;
$pow = 1/3;
echo pow($num, $pow);
这个可以算8的立方根,但是不能用在bcpow函数中。。。
23樓 巨大八爪鱼 2015-2-24 10:17
bcmath库目前的缺陷就是:无法算任意数的n次方根
24樓 巨大八爪鱼 2015-2-24 10:40
<?php
$two = gmp_init(27);
$cuberoot = gmp_root($two, 3); //开三次方
echo gmp_strval($cuberoot); //十进制
echo "<br>";
echo gmp_strval($cuberoot, 2); //二进制
?>
还可以用gmp库算三次根
在该例子中只能算出整数结果,比如算三次根号9得出的结果还是2.。。。
25樓 巨大八爪鱼 2015-2-24 10:43
Be careful with GMP - it considers leading zeros in a number string as meaning the number is in octal, whereas 'bc' doesn't:

  gmp_strval("000100", 10) => 64

  bcmul("000100", "1") => 100

gmp会把0开头的数视为八进制数,而bcmath不会
26樓 巨大八爪鱼 2015-2-25 16:48

回复:4楼

100,000^2 = (10^5)^2=10^10=10,000,000,000

可见,2的十万次方比十万的平方大多了

回復帖子

內容:
用戶名: 您目前是匿名發表
驗證碼:
 
 
©2010-2024 Arslanbar [手機版] [桌面版]
除非另有聲明,本站採用創用CC姓名標示-相同方式分享 3.0 Unported許可協議進行許可。