标题:一道有趣的题目
取消只看楼主
hyxw5890
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2007-3-19
 问题点数:0 回复次数:0 
一道有趣的题目

输入比如n=6,打印出如下图形:
1
22 22
333 333
4444 4444
55555 55555
666666 666666
55555 55555
4444 4444
333 333
22 22
1
这是我的代码,感觉有点傻啊,大家有没有更好的办法。
#include <iostream.h>
#include <stdio.h>
void main()
{int i,j,n;
cin>>n;
for(i=1;i<=n;i++)
{for(j=1;j<=2*(n-i);j++)
cout<<' ';
for(j=1;j<=i;j++)
cout<<i;
for(j=1;j<=2*(i-1)-1;j++)
cout<<' ';
if(i>1)
for(j=1;j<=i;j++)
cout<<i;
cout<<endl;
}
for(i=n-1;i>=1;i--)
{for(j=1;j<=2*(n-i);j++)
cout<<' ';
for(j=1;j<=i;j++)
cout<<i;
for(j=1;j<2*(i-1);j++)
cout<<' ';
if(i>1)
for(j=1;j<=i;j++)
cout<<i;
cout<<endl;
}
}

搜索更多相关主题的帖子: 图形 include 
2007-04-03 21:59



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-129023-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.230123 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved