


代码:double mypow( double x, int n )
{
float s=1;
int i;
for(i=0;i<n;i++)
{
s=s*x;
}
return s;
}



代码:double mypow( double x, int n )
{
float s=1;
int i;
for(i=0;i<n;i++)
{
s=s*x;
}
return s;
}

被折叠的 条评论
为什么被折叠?