Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.12 KB | None | 0 0
  1. int aFunction(int size)
  2. {
  3.     int product = 1;
  4.     while (size > 0)
  5.     {
  6.         product *= size;
  7.         size--;
  8.     }
  9.  
  10.     return product;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement