包含一个递归调用的递归。(自调用的格式)

递归函数如果调用了自己,那么被调用的函数也会调用自己。格式一般为

    void  递归函数(参数1)

     {

            语句1;

                      if(判断)

                           递归函数(参数2); 

                               语句2;

    } 



只要if判断是true,那么每次递归函数都调用语句1,然后调用递归函数(参数2),不调用语句2.

但当前的循环被结束时,即是if为false时,那么开始调用语句2,然后翻回上一个调用参数2,构成返回循环。如此两次调用构成对称参数。如下面程序对应。



#include<iostream>

void countdown(int n);
int main()
{
countdown(4);
return 0;
}
void countdown(int n)
{
using namespace std;
cout << " Countdown down...." << n << endl;
if (n > 0)
countdown(n - 1);
cout << n << " : Kaboom!\n";

}



#include<iostream>
void countdown(int n);
int main()
{
countdown(6);
return 0;
}
void countdown(int n)
{
using namespace std;
cout << " Countdown down...." << n << endl;
if (n > 0)
countdown(n -2);
cout << n << " : Kaboom!\n";

}







#include<iostream>
void countdown(int n);
int main()
{
countdown(4);
return 0;
}
void countdown(int n)
{
using namespace std;
cout << " Countdown down...." << n << endl;
/*if (n > 0)
countdown(n - 1);
cout << n << " : Kaboom!\n";
*/
}



#include<iostream>
void countdown(int n);
int main()
{
countdown(6);
return 0;
}
void countdown(int n)
{
using namespace std;
cout << " Countdown down...." << n << endl;
if (n > 0)
countdown(n -2);
cout << n << " : Kaboom!\n";

}

#include<iostream>
void countdown(int n);
int main()
{
countdown(4);
return 0;
}
void countdown(int n)
{
using namespace std;
cout << " Countdown down...." << n << endl;
if (n > 0)
countdown(n - 1);
//cout << n << " : Kaboom!\n";

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值