关于FOR循环
include <stdio.h>void star()
{printf("******");}
void main()
{int i,j;
for (i=1;i<=4;i++)
{for(j=1;j=2*i-1;j++)
printf("");
star();}
for(i=3;i>+1;i--)
{for(j=1;j<=2*i-1;j++)
printf("");
star();}
getch();
}
按理说应该是输出
******
******
******
******
******
******
******
可是屏幕却什么都没有