输入x,计算x的y方(运用递归)
//
//#include <stdio.h>
//int xyfang(int x,int y);
//int xyfang(int x,int y){
// int result=0;
// if (y==1) {
// result=x;
// } else {
// result=xyfang(x,y-1)*x;
// }
// return result;
//}
//
//int main(){
//
// int result=0;
//
// int x,y,z;
//
// x=y=0;
//
// scanf("%d,%d",&x,&y);
//
// result=xyfang(x,y);
//
// printf("%d\n",result);
//
// return 0;
//}
|
|