这个图形的 程序 怎么写

作者在 2010-03-10 16:58:09 发布以下内容
       *
      ***
     *****
    *******
     *****
      ***
       *
默认分类 | 阅读 551 次
文章评论,共2条
qq113551470
2010-03-23 22:22
1
#include&lt;stdio.h&gt;<br />
int main()<br />
{<br />
&nbsp;&nbsp;int i ,j;<br />
&nbsp;&nbsp;int k = 3;<br />
&nbsp;&nbsp;for(i=1;i&lt;=7;i+=2)<br />
&nbsp;&nbsp;{&nbsp;&nbsp;for(j = k;j&gt;0;j--)<br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;printf(&quot; &quot;);<br />
<br />
&nbsp; &nbsp;&nbsp;&nbsp;for(j=1;j&lt;=i;j++)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;printf(&nbsp; &nbsp;&quot;*&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; printf(&quot;\n&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;k--;<br />
&nbsp;&nbsp;<br />
&nbsp;&nbsp;}<br />
&nbsp;&nbsp;k=1;<br />
&nbsp; &nbsp;for(j=5;j&gt;=1;j-=2)<br />
&nbsp;&nbsp;{<br />
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;for(i = 0;i&lt;k;i++)<br />
&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;printf(&quot; &quot;);<br />
&nbsp; &nbsp;&nbsp;&nbsp;for(i=1;i&lt;=j;i++)<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;printf(&nbsp;&nbsp;&quot;*&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; printf(&quot;\n&quot;);<br />
&nbsp; &nbsp; &nbsp; &nbsp; k++;<br />
&nbsp;&nbsp;<br />
&nbsp;&nbsp;}<br />
<br />
}
qq113551470
2010-03-23 22:23
2
看看是不是您想要的
游客请输入验证码
文章分类
文章归档