填空题

以下函数的功能是求x的y次方,请填空。
double fun(double x,int y)
int i;
double z;
for(i=1,z=x;i<y;i++)z=z*______;
return z;

【参考答案】

x