UVA 113-Power of Cryptography
题目大意:给n和p,求出k,使得k^n=p
解题思路:用pow()函数
#include <stdio.h>
#include <iostream>
#include <math.h>
using namespace std;
int main() {
double a, b;
while(scanf("%lf%lf", &a, &b) != EOF)
printf("%.0lf\n", pow(b ,1 / a));
return 0;
}