编程:输出下列图形。
1
12
123
1234
12345
123456
#include<stdio.h>
void main()
{
int i,j;
for(i=1;i<=6;i++)
for(j=1;j<=i;j++)
printf("%d",j)
printf("\n");
}