Input :
N=4
Output :
4444444
4333334
4322234
4321234
4322234
4333334
4444444
//Simple logic
#include<stdio.h>
N=4
Output :
4444444
4333334
4322234
4321234
4322234
4333334
4444444
//Simple logic
#include<stdio.h>
int
findmax(int a,int b)
{
return (a>b?a:b);
}
int
main()
{
int i,j,m,n;
scanf("%d",&n);
m=(n*2)-1;
for(i=0;i<m;i++)
{
for(j=0;j<m;j++)
printf("%d",1+findmax(abs(n-i-1),abs(n-j-1)));
printf("\n");
}
return 0;
}
(or)
#include<stdio.h>
int main()
{
int i,j,k,n=4,l;
//i for row, j for element no
//i for row, j for element no
for(i=1;i<=n;i++) // row count
{
for(k=1,l=n;k<i && l>=1;k++,l--)
// k prints the values from starting till the row no
printf("%d",l);
for(j=k;j<=(n+n-1)-i+1;j++) //j in
every row inserts values starting from i-1 to 7-i+1
printf("%d",l);
for(k=j;k<=n+n-1;k++) // k prints the remaining values
{
if(l<=n)
printf("%d",++l);
else
printf("%d",n);
}
printf("\n");
}
for(i=n-1;i>=1;i--)
{
for(k=1,l=n;k<i;k++,l--)
printf("%d",l);
for(j=k;j<=(n+n-1)-i+1;j++)
printf("%d",l);
for(k=j;k<=n+n-1;k++)
{
if(l<=n)
printf("%d",++l);
else
printf("%d",n);
}
printf("\n");
}
getch();
}
No comments:
Post a Comment