Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.09 KB | None | 0 0
  1. float potega(float x, int n)
  2.     {
  3.         if(n == 0) return 1;
  4.         else return x * potega(x, n-1);
  5.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement