programming-examples/c/Pattern_Programs/5432 543 54.c

23 lines
378 B
C
Raw Normal View History

2019-11-15 12:59:38 +01:00
/*
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");
}
}