12345 23455 34555 45555 55555
/**
* C program to print number pattern
* www.atnyla.com
*/
#include <stdio.h>
int main()
{
int rows, cols, i, j;
/* Input rows and columns from user */
printf("Enter number of rows: ");
scanf("%d", &rows);
printf("Enter number of columns: ");
scanf("%d", &cols);
for(i=1; i<=rows; i++)
{
for(j=i; j<=cols; j++)
{
printf("%d", j);
}
for(j=i; j>1; j--)
{
printf("%d", cols);
}
printf("\n");
}
return 0;
}
Enter number of rows: 5
Enter number of columns: 5
12345
23455
34555
45555
55555
Basic C programming, Loop
Before we get into detail of printing these two patterns I assume that you all must be aware of basic number pattern printing, if not I recommend you to go through some previous number pattern to get yourself acquainted.
12345 23455 34555 45555 55555
Now, considering this pattern have an eye to this pattern carefully you will notice two separate patterns here. The two separate patterns are:
12345 2345- 345-- 45--- 5----
----- ----5 ---55 --555 -5555
Now logic to print the both patterns separately is relatively easier then whole pattern at once.
And you are done. Lets, now implement this on code.
First understand the algorithm carefully. Then study the program line-by-line and compare it with the output. Finally, review the explanation section to strengthen your logic and programming understanding.
Rewrite the program without looking at the code. Modify values, conditions or logic and run it again. This helps improve confidence and strengthens coding skills much faster.