图形问题
*
**
***
printf("*")
int i,j;
for(i=0;i<3;i++)
{ for(j=0,j<=i;j++)
printf("*");
printf("\n");
}