原题地址
通过换底公式。
HDUOJ提供的C++应该是 G++、、对标准库的重载非常严格。
用C提交
#include <stdio.h>
#include <math.h>
int main()
{
int n,temp;
long long t;
double x;
scanf("%d",&n);
while(n--)
{
scanf("%d",&temp);
x=temp*log10(temp);
t = x;
x-=t;
t=pow(10,x);
printf("%I64d\n",t);
}
return 0;
}