Java program to print star pattern in triangle shape YASH PAL, 31 July 2024 In this tutorial, we are going to write a Java Program to print a star pattern in a triangle shape in java Programming with practical program code and step-by-step full complete explanation. Java program to print a star pattern in a triangle shape. class Pattern1 { public static void main(String args[]) { for(int i=1;i<=5;i++) { for(int j=1;j<=i;j++) { System.out.print("* "); } System.out.println(); } } } Output * * * * * * * * * * * * * * * coding problems solutions Java Programming Tutorials