标签:style class blog c code tar
神水。
求n=log(k p)-> k=pow(p,1/n)。
G++和C++输出不同,编译器原因。
代码:
1 #include<cstdio> 2 #include<cmath> 3 #include<cstring> 4 #include<iostream> 5 #include<algorithm> 6 7 using namespace std; 8 9 int main() 10 { 11 double n,p; 12 while(scanf("%lf%lf",&n,&p)!=EOF) 13 { 14 double ce=pow(p,1/n); 15 printf("%.0f\n",ce); //g++。如C++交%.0lf 。 16 } 17 return 0; 18 }
poj2109(Power of Cryptography),布布扣,bubuko.com
poj2109(Power of Cryptography)
标签:style class blog c code tar
原文地址:http://www.cnblogs.com/ZhaoPengkinghold/p/3736947.html