求助  新学C 仍然是关于排序问题 之图形
											为实现出图形    
   *                     
  ***
 *****
*******
 *****
  *** 
   *
#include <stdio.h>                     
main()                                                                                                 
{int i,j;
 { for(i=1;i<=4;i++)
    {for(j=1;j<=2*i-1;j++)
      putchar('*');
      putchar('\n');
     }
 {for(i=5;i<=7;i++)
     {for(j=2*(7-i)+1;j>=1;j--)
      putchar('*');
      putchar('\n');
      }
}}}#include <stdio.h>
main()
{int i,j;
 { for(i=1;i<=4;i++)
    {for(j=1;j<=2*i-1;j++)
      putchar('*');
      putchar('\n');
     }
 {for(i=5;i<=7;i++)
     {for(j=2*(7-i)+1;j>=1;j--)
      putchar('*');
      putchar('\n');
      }
}}}我编译的效果是
*
***
*****
*******
*****
***
*    请大家指点   你的一小步 我的一大步

 
											





 
	    
 提个意见,为什么不直接输出啊......
提个意见,为什么不直接输出啊......
