-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathPattern6.java
55 lines (46 loc) · 1.13 KB
/
Pattern6.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
/**
* @author MadhavBahl
* @date 26/12/2018
*/
/**
* input = 4
* *
* * * *
* * * * * *
* * * * * * * *
* * * * * *
* * * *
* *
*/
import java.util.Scanner;
public class Pattern6 {
public static void main (String[] args) {
System.out.println("/* ===== Pattern #6 ===== */");
Scanner input = new Scanner(System.in);
int n = input.nextInt(), i, j;
// Print upper pyramid
for (i=1; i<=n; i++) {
// Print white spaces
for (j=1; j<=n-i; j++) {
System.out.print(" ");
}
// Print asterisks
for (j=1; j<=(2*i - 1); j++) {
System.out.print("* ");
}
System.out.println("");
}
// Print lower pyramid
for (i=n-1; i>=1; i--) {
// Print white spaces
for (j=1; j<=n-i; j++) {
System.out.print(" ");
}
// Print asterisks
for (j=1; j<=(2*i - 1); j++) {
System.out.print("* ");
}
System.out.println("");
}
}
}