Power of Cryptography--POJ 2109
1、题目类型:数论。
2、解题思路:水题,用double类型运算即可。
3、实现方法:
#include<iostream>
#include<math.h>
using namespace std;
int main()
{
double n,p;
while(scanf("%lf%lf",&n,&p)!=EOF)
{
double k=pow(p,1/n);
printf("%.0lf\n",k);
}
return 0;
}