2016-07-20
UVA-113 Power of Cryptography
题目大意:k^n=p,给出 n 和 p 求 k
解题思路:k = p ^ (1/n)
注意:这题用double即可,原因如下。
此题可用double的原因#include <iostream>
#include <cmath>
#include <cstdio>
using namespace std;
int main() {
double n,p;
while ( scanf("%lf%lf",&n,&p) != EOF ) {
printf("%.0lf\n",pow(p , 1/n) );
}
return 0;
}