Guest User

Untitled

a guest
Feb 21st, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.11 KB | None | 0 0
  1. public int silnia(int n){
  2.     int wynik = 1;
  3.     for(int i=1;i<=n;i++){
  4.         wynik = wynik*i;
  5.     }
  6.     return wynik;
  7.    
  8. }
Add Comment
Please, Sign In to add comment