递归,无限迷茫中……
#include <iostream>
void countdown (int n);
int main()
{
countdown(4);
return 0;
}
void countdown(int n)
{
using namespace std;
cout<<"Counting down ... "<<n<<"\t(n at "<<&n<<")"<<endl;
if (n > 0)
countdown(n-1);
cout<<n<<": Kaboom!\t\t"<<"(n at "<<&n<<")"<<endl;
}
迷茫啊迷茫。。呃
本作品采用知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议进行许可。
近期评论