C语言递归算法求1+2+3+....+n的和(不要百度答案…)

2024-11-09 09:00:18
推荐回答(1个)
回答1:

这个递归应该是最简单的了,例如:

int Sum(int n)
{
if(n == 1) return 1;
return n + Sum(n -1);
}