Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
17
Task/Factorial/Processing/factorial-2.processing
Normal file
17
Task/Factorial/Processing/factorial-2.processing
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
long fi(int n) {
|
||||
if (n < 0){
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (n == 0){
|
||||
return 1;
|
||||
} else {
|
||||
long r = 1;
|
||||
|
||||
for (long i = 1; i <= n; i++){
|
||||
r = r * i;
|
||||
}
|
||||
|
||||
return r;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue