33 lines
455 B
Plaintext
Raw Normal View History

import java.lang.Integer;
public class Faculty {
2017-11-29 14:45:15 +01:00
m (x) {
2017-11-29 14:45:15 +01:00
// var fact = (x) -> {
// if (x == 1) {
// return x;
// }
// else {
// return x * (fact.apply(x-1));
// }
// };
// return fact;
// var x = 13;
// if(x>22) {
// return 0;
// }else if(x <1){
// return x;
// }else {
// return 1;
// }
2018-09-19 16:00:55 +02:00
if (x == 1) {
return x;
}
else {
return x * m(x-1);
}
2017-11-29 14:45:15 +01:00
}
}