-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStar_pattern.java
More file actions
101 lines (91 loc) · 1.79 KB
/
Star_pattern.java
File metadata and controls
101 lines (91 loc) · 1.79 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/*
//right angle triangle
public class Star_pattern
{
public static void main(String[] args) {
int k=1;
for(int i=1;i<=5;i++){
for (int j=1;j<=i;j++){
System.out.print("*"+" ");
}
System.out.println();
}
}
}
//reduced inverted triangle
public class Star_pattern
{
public static void main(String[] args) {
for(int i=1;i<=5;i++){
for (int j=i;j<=5;j++){
System.out.print("*"+" ");
}
System.out.println();
}
}
}
//growing triangle
public class Star_pattern
{
public static void main(String[] args) {
int k=5;
for(int i=1;i<=k;i++){
for (int l=1;l<=k-i;l++){
System.out.print(" ");
}
for (int j=1;j<=i;j++){
System.out.print("*"+" ");
}
System.out.println();
}
}
}
//right-angled triangle
public class Star_pattern
{
public static void main(String[] args) {
int k=5;
for(int i=1;i<=k;i++){
for (int l=1;l<=k-i;l++){
System.out.print(" "+" ");
}
for (int j=1;j<=i;j++){
System.out.print("*"+" ");
}
System.out.println();
}
}
}
//pyramid
public class Star_pattern
{
public static void main(String[] args) {
int k=5;
for(int i=1;i<=k;i++){
for (int l=1;l<=(k-i)*2;l++){
System.out.print(" ");
}
for (int j=1;j<=(2*i)-1;j++){
System.out.print("*"+" ");
}
System.out.println();
}
}
}
*/
//Reverse Pyramid
public class Star_pattern
{
public static void main(String[] args) {
int k=7;
for(int i=k;i>=1;i--){
for (int l=i;l<k;l++){
System.out.print(" ");
}
for (int j=1;j<=(2*i-1);j++){
System.out.print("* ");
}
System.out.println();
}
}
}