mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
fix documentation for double_factorial
This commit is contained in:
parent
44f68e9a2e
commit
50070774dd
@ -2,7 +2,8 @@
|
|||||||
* @file
|
* @file
|
||||||
* Double factorial of a non-negative integer n, is defined as the product of
|
* Double factorial of a non-negative integer n, is defined as the product of
|
||||||
* all the integers from 1 to n that have the same parity (odd or even) as n.
|
* all the integers from 1 to n that have the same parity (odd or even) as n.
|
||||||
* <br/>It is also called as semifactorial of a number and is denoted by `!!`
|
* <br/>It is also called as semifactorial of a number and is denoted by
|
||||||
|
* \f$n!!\f$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
@ -27,7 +28,7 @@ uint64_t double_factorial_recursive(uint64_t n) {
|
|||||||
|
|
||||||
/// main function
|
/// main function
|
||||||
int main() {
|
int main() {
|
||||||
uint64_t n{};
|
uint64_t n;
|
||||||
std::cin >> n;
|
std::cin >> n;
|
||||||
assert(n >= 0);
|
assert(n >= 0);
|
||||||
std::cout << double_factorial_iterative(n);
|
std::cout << double_factorial_iterative(n);
|
||||||
|
Loading…
Reference in New Issue
Block a user