首页 > 代码库 > POJ 2109 Power of Cryptography

POJ 2109 Power of Cryptography

http://poj.org/problem?id=2109

题意:

给出两个数n和p,要求p是n的几次方。

思路:

好神奇的题目,我一开始想那就一直除呗,后来又想到了有pow这种公式,居然这么简短就过了,有点不可思议。

 1 #include<iostream>  2 #include<cmath> 3 using namespace std; 4  5 int main() 6 { 7     double n, p; 8     while (cin >> n >> p) 9     {10         cout << pow(p,1/n) << endl;11     }12     return 0;13 }

 

POJ 2109 Power of Cryptography