-
Notifications
You must be signed in to change notification settings - Fork 0
/
Numberpattern6.c
37 lines (29 loc) · 956 Bytes
/
Numberpattern6.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// *********************************************************************
// Author - Vaibhav Kagathara
// Date :- 29th October 2019
// Language :- C Language
// About :- Number Pattern 6
// *********************************************************************
// //////////////////////////////////////////////////////////////////////
/*
1
2 3 4
5 6 7 8 9
*/
// //////////////////////////////////////////////////////////////////////
#include<stdio.h>
void main()
{
int i, j, k=1;
for(i=1; i<=5; i=i+2)
{
for(j=5 ; j>=1 ; j--)
{
if(j>i)
printf(" ");
else
printf("%d ",k++);
}
printf("\n") ;
}
}