使用系统函数pow(x,y)计算x y的值,注意包含头文件cmath。
时间: 2023-05-30 10:06:49 浏览: 200
用函数进行数值计算
示例代码:
```c++
#include <iostream>
#include <cmath>
int main() {
double x = 2.0, y = 3.0;
double result = std::pow(x, y);
std::cout << x << " 的 " << y << " 次方等于 " << result << std::endl;
return 0;
}
```
输出:
```
2 的 3 次方等于 8
```
阅读全文