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.

23 lines
378 B
C

/*
5432*
543*1
54*21
5*321
*4321
*/
#include<stdio.h>
void main()
{
int i,j;
for(i=1; i<=5; i++)
{
for(j=5; j>=1; j--)
{
if(i==j)
printf("*");
else
printf("%d",j);
}
printf("\n");
}
}