java 幂运算如何表示
问题描述:
java 幂运算如何表示
答
Math类中的pow(double m,double n)方法
比如4^3可以写为
double a=Math.pow(4,3);
则a就是结果