POJ 2109 Power of Cryptography

Posted 谦谦君子,陌上其华

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章

?POJ 2109 -- Power of Cryptography

POJ2109 Power of Cryptography

POJ 2109 Power of Cryptography

POJ_2109 Power of Cryptography 数学

poj 2109 Power of Cryptography

poj2109 Power of Cryptography坑~泪目水过