The pattern would be like this:
1
123
12345
1234567
To get more idea have a look for the source code and the output below:
The source code of the above output is:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
#include<conio.h> | |
int main() | |
{ | |
int i,j,k,l=3; | |
for(i=1;i<=4;i++) | |
{ | |
for(j=1;j<=(4-i);j++) | |
{ | |
printf(" "); | |
} | |
for(k=1;k<=i;k++) | |
{ | |
printf("%d",k); | |
} | |
for(k=1;k<i;k++) | |
{ | |
printf("%d",l+(k-2)); | |
} | |
l++; | |
printf("\n"); | |
} | |
getch(); | |
} | |
0 comments :
Post a Comment