阅读量:0
是的,C++的幂函数(pow)支持浮点数作为参数。例如,可以通过调用pow函数来计算一个浮点数的指数值,如下所示:
#include <iostream> #include <cmath> int main() { double base = 2.5; double exponent = 3.0; double result = std::pow(base, exponent); std::cout << base << " raised to the power of " << exponent << " is " << result << std::endl; return 0; }
这段代码将输出:2.5 raised to the power of 3 is 15.625。因此,C++的pow函数可以用于计算任意浮点数的幂运算。