-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAstericPractice.java
89 lines (70 loc) · 1.79 KB
/
AstericPractice.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
86
87
88
89
public class AstericPractice{
public static void main(String[] args){
for(int row = 1; row <= 5; row++){
for(int col = 5; col >= row; col--){
System.out.print("*");
}
System.out.println();
}
for(int row = 1; row <= 5; row++){
for(int col = 1; col <= row; col++){
System.out.print("* ");
}
System.out.println();
}
for(int row = 1; row <= 5; row++){
for(int col = 1; col <= row; col++){
System.out.print(col+" ");
}
System.out.println();
}
System.out.println();
for(int row = 1; row <= 5; row++){
for(int col = 5; col >= row; col--){
System.out.print(col+" ");
}
System.out.println();
}
System.out.println();
for(int row = 1; row <= 5; row++){
for(int col = 5; col >= row; col--){
System.out.print(col+" ");
}
System.out.println();
}
System.out.println();
for(int row = 1; row < 2 * 5; row++){
int totalColsInRow = row > 5? 2 * 5 - row: row;
for(int col = 0; col < totalColsInRow; col++){
System.out.print(row+" ");
}
System.out.println();
}
System.out.println();
for(int row = 1; row < 2 * 5; row++){
int totalColsInRow = row > 5? 2 * 5 - row: row;
int noOfSpaces = 5 - totalColsInRow ;
for(int col = 0; col < noOfSpaces; col++){
System.out.print(" ");
}
for(int col = 0; col < totalColsInRow; col++){
System.out.print("* ");
}
System.out.println();
}
System.out.println();
for(int row = 1; row <= 5; row++){
for(int spaces = 0; spaces < 5- row; spaces++){
System.out.print(" ");
}
//int totalColsInRow = row > 5? 2 * 5 - row: row;
for(int col = row; col >= 1; col--){
System.out.print(col+ " ");
}
for(int col = 2; col <= row; col++){
System.out.print(col+ " ");
}
System.out.println( );
}
}
}