From 50070774dd7cbf80e76bbf32f5f45c2cb3d8f24b Mon Sep 17 00:00:00 2001 From: Krishna Vedala Date: Wed, 27 May 2020 12:55:03 -0400 Subject: [PATCH] fix documentation for double_factorial --- math/double_factorial.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/math/double_factorial.cpp b/math/double_factorial.cpp index 73a3d344a..26b90f356 100644 --- a/math/double_factorial.cpp +++ b/math/double_factorial.cpp @@ -2,7 +2,8 @@ * @file * 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. - *
It is also called as semifactorial of a number and is denoted by `!!` + *
It is also called as semifactorial of a number and is denoted by + * \f$n!!\f$ */ #include @@ -27,7 +28,7 @@ uint64_t double_factorial_recursive(uint64_t n) { /// main function int main() { - uint64_t n{}; + uint64_t n; std::cin >> n; assert(n >= 0); std::cout << double_factorial_iterative(n);