求x的n次方
请问如何用C++编写求x的n次方 #include<iostream>#include<cmath>
using namespace std;
int main() {
long double x, n;
cin >> x >> n;
cout << pow(x, n) << endl;
return 0;
} x^n 本帖最后由 405794672 于 2020-6-27 20:13 编辑
int temp=x;
for(i=1;i<n;i++)
{
x*=temp;
}
页:
[1]