Papawy

Pow remix

Jun 27th, 2015
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.11 KB | None | 0 0
  1. pow(nbr, puissance)
  2. {
  3.     new result = 1;
  4.     for(new i = 0; i<puissance; i++) { result *= nbr; }
  5.     return result;
  6. }
Advertisement
Add Comment
Please, Sign In to add comment