Latest :

Java Hollow Pyramid Star Pattern Program | Patterns

Java program to print Hollow Pyramid star pattern program. We have written below the print/draw Hollow Pyramid asterisk/star pattern program in four different ways with sample example and output, check it out. At the end of the program, we have added compiler so that you can execute the below codes – Check 20+ different star pattern programs in Java.

  • Using For Loop
  • Using While Loop
  • Using Do While Loop

Using For Loop

1) Reads the n value using Scanner object sc.

2) To iterate through rows run the outer for loop with the structure for(int i=1;i<=n;i++).

3) To iterate through columns run the inner loops.

4) The 1st inner loop prints space for  i<=n && j<=n-i.

5) If “if” condition true- for loop prints charter when j<=i*2-1 is true.

6) if condition false-next for loop prints charter if if(j==1 || j==i*2-1) condition is true. Otherwise, it prints space.

Output:

Using While Loop

1) Outer while loop iterates until i<=n. Outer while loop iterates through rows.

2) Inner while loops iterates through columns.

3) 1st while loop prints space if the condition j++<=n-i is true.

4) If if(i==1 || i==n) condition true then 1st inner loop will print charter until the j++<=i*2-1 condition is true. If condition is false then 2nd inner loop prints charter if if(j==1 || j==(i*2)-1) is true, until while(j<=(i*2)-1) is false, otherwise prints space.

Output:

Using Do-While Loop

1) The outer do while loop iterates until i<=n. Outer do-while loop iterates through rows.

2) The 1st inner do while loop prints space until the condition ++j <=n-i+1.

3) If if condition true then the inner do while loop prints charter until the condition (++j <=i*2-1) is false.

4) if “if” condition is false then next do-while loop prints charter if  if(j==1 || j==i*2-1) is true until while(++j<=i*2-1) is false, otherwise it prints space.

Output:

More:

x

Check Also

Java Inverted Right Triangle Star Pattern Program | Patterns

Java program to print Inverted right triangle star pattern program. We have written below the ...