✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
з використанням рекурсії?
1. {if (n == 1 || n == 0) return 1;
else return n * fact (n -1);}
2. {if (n == 1 || n == 0) return 1;
else return fact ( n );}
(C++)