数值的整数次方——js

    xiaoxiao2022-07-07  148

    代码

    太简单了,跟之前的一样

    function Power(base, exponent) { // write code here return Math.pow(base,exponent) }
    最新回复(0)