math:pow/2
返回 X 的 Y 次方
用法:
pow(X, Y)
返回 X 的 Y 次方
Pow = math:pow(2, 3), io:format("Pow is ~p~n", [Pow]).
Pow = math:pow(27, 1/3), io:format("Pow is ~p~n", [Pow]).
返回 X 的 Y 次方
用法:
pow(X, Y)
返回 X 的 Y 次方
Pow = math:pow(2, 3), io:format("Pow is ~p~n", [Pow]).
Pow = math:pow(27, 1/3), io:format("Pow is ~p~n", [Pow]).