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.

13 lines
233 B
C

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