forked from CodeToExpress/dailycodebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pattern8.java
57 lines (52 loc) · 1.44 KB
/
Pattern8.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
/**
* @author MadhavBahlMD
* @date 26/12/2018
*/
/**
* input = 5
*
* * *
* * * * *
* * * * * * *
* * * * * * * * *
* * * * * * * * * * *
* * * * * * * * * * *
* * * * * * * * *
* * * * * * *
* * * * *
* * *
*/
import java.util.Scanner;
public class Pattern8 {
public static void main(String[] args) {
System.out.println("/* ===== Pattern #8 ===== */");
Scanner input = new Scanner(System.in);
int n = input.nextInt(), i, j;
// Print upper pattern
for (i=1; i<=n; i++) {
for (j=1; j<=2*n; j++) {
if (j<=n) {
if (i<j) System.out.print(" ");
else System.out.print("* ");
} else {
if (i+j < 2*n + 1) System.out.print(" ");
else System.out.print("* ");
}
}
System.out.println("");
}
// Print lower pattern
for (i=1; i<=n; i++) {
for (j=1; j<=2*n; j++) {
if (j<=n) {
if (i+j>n+1) System.out.print(" ");
else System.out.print("* ");
} else {
if (i > j-n) System.out.print(" ");
else System.out.print("* ");
}
}
System.out.println("");
}
}
}