Sunday, July 28, 2019

Numeric Pattern3

Numeric Pattern3:



55555
44444
33333
22222
11111

#include<stdio.h>
#include<conio.h>

void main()
{
int i,j;
clrscr();
for(i=5;i>=1;i--)
{
for(j=1;j<=5;j++)
{
printf("%d",i);
}
printf("\n");
}
getch();
}


EmoticonEmoticon