-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDiamondofStars.java
46 lines (44 loc) · 933 Bytes
/
DiamondofStars.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
/*
Print the following pattern for the given N number of rows.
Pattern for N = 4
*
***
*****
*******
*****
***
*
*/
package Patterns;
import java.util.Scanner;
public class DiamondofStars {
public static void main(String[] args) {
System.out.print("Enter the number of rows n = ");
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
for(int row =1;row<=n-1;row++) {
for(int spaces = 1;spaces<=n-row;spaces++) {
System.out.print(' ');
}
for(int stars = 1;stars<=row;stars++) {
System.out.print('*');
}
for(int decN = row -1;decN>0;decN--) {
System.out.print("*");
}
System.out.println();
}
for (int row = n; row >=1; row--) {
for(int spaces = 1;spaces<=n-row;spaces++) {
System.out.print(' ');
}
for(int stars = 1;stars<=row;stars++) {
System.out.print('*');
}
for(int decN = row -1;decN>=1;decN--) {
System.out.print("*");
}
System.out.println();
}
}
}