![]() |
#2
不会游泳的虾2023-04-13 00:31
|
#include <stdio.h>
void main()
{
int n;
double x,f;
scanf("%f%d",&x,&n);
f= power(x,n);
printf("%f\n",f);
}
double power(x,n);
{
int i;
double t=11;
for(i=1,i<=n;i++)
t=t*x;
return t;
}