📅  最后修改于: 2023-12-03 14:50:15.073000             🧑  作者: Mango
在C++中,我们可以使用标准库中的<cmath>
头文件中的函数来计算幂函数。其中,pow()
函数用来计算任意基数的任意幂。因此,我们可以使用pow()
函数来创建具有10 cpp幂的大整数。
#include <iostream>
#include <cmath>
using namespace std;
int main() {
long double num = pow(10, 10);
cout << "The number is: " << num << endl;
return 0;
}
在上面的代码中,我们使用了pow()
函数来计算10的10次方,即10 cpp幂。将计算结果存储在long double
类型的变量num
中,并使用cout
语句打印输出结果。