fork download
  1. #include <stdio.h>
  2.  
  3. int fuga(int x,int y){
  4. int n=1;
  5. int i;
  6. if(y==0){
  7. return 1;
  8. }
  9. for(i=0;i<y;i++){
  10. n=n*x;
  11. }
  12. return n+fuga(x,y-1);
  13.  
  14. }
  15.  
  16.  
  17. int main(void) {
  18. printf("%d",fuga(2,3));
  19. return 0;
  20. }
  21.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
15