-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathPattern.java
34 lines (29 loc) · 831 Bytes
/
Pattern.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
/*
* Write a program to print the following patterns using loops.
*/
import java.util.*;
public class Pattern {
public static void main(String[] args) {
int i, j, k;
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for (i = 1; i <= n; i++) {
for (k = i - 1; k > 0; k--) {
System.out.print(" " + "\t");
}
for (j = i; j <= n; j++) {
System.out.print(j + "\t");
}
System.out.println("");
}
for (i = n - 1; i > 0; i--) {
for (k = i - 1; k > 0; k--) {
System.out.print(" " + "\t");
}
for (j = i; j <= n; j++) {
System.out.print(j + "\t");
}
System.out.println("");
}
}
}