pow() 函数用来求 x 的 y 次幂(次方),其原型为:
1 double pow(double x, double y); 2 3 #include<iostream> 4 #include<cmath> 5 using namespace std; 6 double n,p; 7 int main(){ 8 while(cin>>n>>p){ 9 cout<<pow(p,1.0/n)<<endl; 10 } 11 return 0; 12 }
时间: 2024-10-28 21:37:55