Description
定义求x的n次幂的函数,并返回计算结果。请复制下面的代码,并按要求填充完整。
注意,不得擅自更改给出的代码!
#include <stdio.h>
/*在下面Begin至End间,按原型 int power(int x, int n) 定义函数*/
/********** Begin **********/
int power(int x, int n)
{
//your code
}
/********** End **********/
int main()
{
int a, b, s;
scanf("%d%d", &a, &b);
s = power(a, b); //调用power( )函数,求a与b的和
printf("%d\n", s);
return 0;
}
Input
输入x和n的值,用空格隔开
输入格式如:
4 9
Output
输出x的n次幂
输出格式如:
262144