Q. Write a C program to print the following number pattern rectangle as:
1 2 3 4 5 4 5
2 3 4 5 3 4 5
3 4 5 2 3 4 5
4 5 1 2 3 4 5
Ans.
/*c program for number pattern rectangle design*/
#include<stdio.h>
int main()
{
int n=4,num=5,p=4,r,c,z;
for(r=1; r<=n; r++,p--)
{
for(c=r; c<=num; c++)
printf(" %d",c);
for(c=1,z=p; c<=r+1; c++,z++)
printf(" %d",z);
printf("\n");
}
getch();
return 0;
}
/***********************************************************
1 2 3 4 5 4 5
2 3 4 5 3 4 5
3 4 5 2 3 4 5
4 5 1 2 3 4 5
Ans.
/*c program for number pattern rectangle design*/
#include<stdio.h>
int main()
{
int n=4,num=5,p=4,r,c,z;
for(r=1; r<=n; r++,p--)
{
for(c=r; c<=num; c++)
printf(" %d",c);
for(c=1,z=p; c<=r+1; c++,z++)
printf(" %d",z);
printf("\n");
}
getch();
return 0;
}
/***********************************************************
The output of above program would be:
************************************************************/Figure: Screen-shot for Number Rectangle Pattern C program |
i am interested to your program..
ReplyDeleteThere was a mistake in that program...was that not a getch
Deletethat is getchar();
you are doing a noble job , keep it up..............like your programe
ReplyDelete