You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
148 B
11 lines
148 B
4 years ago
|
constexpr int fact(int n)
|
||
|
{
|
||
|
return n <= 1 ? 1 : (n * fact(n - 1));
|
||
|
}
|
||
|
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
fact(4);
|
||
|
return 0;
|
||
|
}
|