-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPattern_Rhombus.java
54 lines (48 loc) · 1.41 KB
/
Pattern_Rhombus.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
import java.util.Scanner;
public class Pattern_Rhombus {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);
int n=s.nextInt();
int space=n-1;
int num=1;
int nd=n;
for (int i = 0; i < n*2-1; i++) {
if(i<=n-1) {
for (int k = 0; k < space; k++) {
System.out.print(" ");
}
for (int k = i + 1; k <= num; k++) {
System.out.print(k + " ");
}
for (int k = num - 1; k >= i + 1; k--) {
System.out.print(k + " ");
}
}
else
{
nd--;
for (int k = 0; k < space; k++) {
System.out.print(" ");
}
for (int k =nd; k <= num; k++) {
System.out.print(k + " ");
}
for (int k = num - 1; k >= nd; k--) {
System.out.print(k + " ");
}
}
if(i>=n-1)
{
System.out.println();
space++;//4
num -= 2;
}
else
{
System.out.println();
space--;//4
num += 2;
}
}
}
}