欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

递归实现求n的阶乘

程序员文章站 2024-03-15 17:19:54
...

递归实现求n的阶乘

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include<math.h>
#include<time.h>
#include<Windows.h>

/*递归和非递归分别实现求n的阶乘*/
int plusplus(int n)
{
	if (n == 1)
	{
		return 1;
	}
	return n * plusplus(n - 1);
	
}
int main()
{
	int n = 5;
	int ret = plusplus(n);
	printf("%d\n", ret);
	system("pause");
	return 0;
}