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.

27 lines
431 B
C

/*
0
909
89098
7890987
678909876
56789098765
4567890987654
345678909876543
23456789098765432
1234567890987654321
*/
#include<stdio.h>
void main()
{
int i,j;
printf("0\n");
for(i=9; i>=1; i--)
{
for(j=i; j<=9; j++)
printf("%d",j);
printf("0");
for(j=9; j>=i; j--)
printf("%d",j);
printf("\n");
}
}