Latest :

Java Inverted Right Triangle Star Pattern Program | Patterns

Java program to print Inverted right triangle star pattern program. We have written below the print/draw inverted right triangle 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.

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

Using For Loop

1 ) Read the entered value n.

2) To iterate through rows run the outer loop from n to 1 with the structure for(int i=n;i>0;i–).

3) To iterate through columns run the inner loop with the structure for(int j=0;j<i;j++).

4) Inner loop prints the character for   j<i

Output:

Using While Loop

1) It checks the condition i>0, then executes the code.

2) The inner while loop will displays character until the condition j++<i false.

3) The outer loop executes the total code until condition false.

Output:

Using Do-While Loop

1) The inner do-while loop prints the character and then the condition –j<i, is true then again prints the character until the condition is false.

2) The outer do-while loop executes the code until the condition –i>0.

Output:

For More Java Star Pattern Programs You can visit Here.

x

Check Also

Java Inverted Mirrored Right Triangle Star Pattern

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