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