代碼如下所示:
代碼如下:
<PRE class=cpp name="code">#include <stdio.h>
#include <math.h>
int main()
{
int x,y;
printf("求x的y次冪:\n");
scanf("%d %d",&x,&y);
printf("結果是:%.2f",pow(x,y)); //要以%f輸出 %d輸出結果都是0
return 0;
}
</PRE><BR>
<PRE></PRE>
<P> </P>
<PRE></PRE>
<PRE></PRE>