求一个数的多少次方 java.lang包下的 Math.pow(a,b) 方法,返回值是double。 参数: a - 底数。 b - 指数。 返回:返回第一个参数的第二个参数次幂的值。 值 a^b。 例子: int i = (int)Math.pow(2,3); // 8 posted @ 2018-10-07 20:18 ChenPS 阅读( ...) 评论( ...) 编辑 收藏