-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdvancedPattern2.java
85 lines (73 loc) · 2.11 KB
/
AdvancedPattern2.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
76
77
78
79
80
81
82
83
84
85
public class AdvancedPattern2 {
public static void main(String[] args) {
int n = 5;
System.out.println("---------------------------- Pattern1 ----------------------------");
// *
// **
// ***
// ****
// *****
// ****
// ***
// **
// *
String pattern[] = new String[2 * n - 1];
for (int i = 1; i < 2 * n; i++) {
StringBuilder row = new StringBuilder();
int breakpoint = i;
if (i > n)
breakpoint = 2 * n - i;
for (int j = 1; j < breakpoint; j++) {
row.append(" ");
}
for (int j = 0; j < breakpoint; j++) {
row.append("*");
}
pattern[i - 1] = row.toString();
}
for (String row : pattern) {
System.out.println(row);
}
System.out.println("---------------------------- Pattern2 ----------------------------");
// 1 2 3 4 5
// 2 3 4 5
// 3 4 5
// 4 5
// 5
// 4 5
// 3 4 5
// 2 3 4 5
// 1 2 3 4 5
for (int i = 1; i <= n; i++) {
for (int j = 0; j < i; j++) {
System.out.print(" ");
}
for (int j = i; j <= n; j++) {
System.out.print(j + " ");
}
System.out.println();
}
for (int i = 1; i < n; i++) {
for (int j = n - 1; j >= i; j--) {
System.out.print(" ");
}
for (int j = n - i; j <= n; j++) {
System.out.print(j + " ");
}
System.out.println();
}
for (int i = 0; i < 2 * n; i++) {
int num = i;
int breakpoint = i;
if (i > n)
breakpoint = 2 * n - i;
for (int j = 1; j < breakpoint; j++) {
System.out.print(" ");
}
for (int j = 1; j <= breakpoint; j++) {
System.out.print(j + " ");
}
System.out.println();
}
}
}