新微赢技术网
标题:
求:把一下程序中的print()函数改写为等价的递归函数
[打印本页]
作者:
!今生无缘!
时间:
2009-11-3 03:12
标题:
求:把一下程序中的print()函数改写为等价的递归函数
#include <iostream.h>
void print(int w)
{
for(int i=1;i<=w;i++)
{
for(int j=1;j<=i;j++)
cout<<i<<" ";
cout<<endl;
}
}
void main()
{print(5);}
运行显示:
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
作者:
龙行天下
时间:
2009-11-3 03:12
查一下,以前的帖子.
作者:
生活的成功者
时间:
2009-11-3 03:12
#include <iostream.h>
void print(int w)
{
if(w>1)
print(w-1);
for(int c=0;c<w;c++)
cout<<w<<" ";
cout<<endl;
}
void main()
{print(5);}
运行显示:
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2