You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
294 B
C

/*
1
121
12321
1234321
*/
#include<stdio.h>
void main()
{
int i,j;
for(i=1; i<=4; i++)
{
for(j=1; j<=i; j++)
printf("%d",j);
for(j=i-1; j>=1; j--)
printf("%d",j);
printf("\n");
}
}