-
Notifications
You must be signed in to change notification settings - Fork 0
/
DiamondPyramid.c
51 lines (45 loc) · 1.14 KB
/
DiamondPyramid.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//Diamond pyramid of *
#include <stdio.h>
int main() {
// Write C code here
int rows;
printf("Enter the rows: \n");
scanf("%d",&rows);
//first loop to print the rows
for(int i = 1; i <= rows; i++)
{
//to print the white spaces/blank spaces
for(int j = i; j < rows; j++)
{
printf(" ");
}
//inner loop 2 to print the numbers
for(int k = 1; k <= 2*i - 1; k++)
{
//if(k== 2*i-1 || k==1 || i==rows)
printf("*");
// else
// printf(" ");
}
printf("\n");
}
//Second loop to print inverse pyramid with one less row
for(int i = rows-1; i>=1 ; i--)
{
//to print the white spaces/blank spaces
for(int j = rows; j >i; j--)
{
printf(" ");
}
//inner loop 2 to print the numbers
for(int k = 2*i - 1; k >=1 ; k--)
{
//if(k== 2*i-1 || k==1 || i==rows)
printf("*");
// else
// printf(" ");
}
printf("\n");
}
return 0;
}