x的n次方
#include<stdio.h>#include<math.h>
double pow(double i,double j)
{
return pow(i,j);
}
int main(){
int i,j;
scanf("%d%d",&i,&j);
printf("%d",pow(i,j));
}
不知道错在哪里 刚刚学C语言
2015-12-01 22:02

2015-12-01 22:29
2015-12-01 22:39
2015-12-06 11:47
2015-12-06 12:09