-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPractical12.java
75 lines (49 loc) · 1.58 KB
/
Practical12.java
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package com.DSA;
public class Practical12 {
public static void main(String[] args) {
// ********************** For first pattern **************
// int rows = 5, k = 0;
//
// for (int i = 1; i <= rows; ++i, k = 0) {
// for (int space = 1; space <= rows - i; ++space) {
// System.out.print(" ");
// }
//
// while (k != 2 * i - 1) {
// System.out.print("* ");
// ++k;
// }
//
// System.out.println();
// }
// ******************** For second pattern *************
int rows = 5, k = 0, count = 0, count1 = 0;
for (int i = 1; i <= rows; ++i) {
for (int space = 1; space <= rows - i; ++space) {
System.out.print(" ");
++count;
}
while (k != 2 * i - 1) {
if (count <= rows - 1) {
System.out.print((i + k) + " ");
++count;
} else {
++count1;
System.out.print((i + k - 2 * count1) + " ");
}
++k;
}
count1 = count = k = 0;
System.out.println();
}
// *************** For third pattern ***************
// for(int i =5;i>=0;--i)
// {
// for(int j=1;j<=i;++j)
// {
// System.out.print("*");
// }
// System.out.println();
// }
}
}