Header Ad

Java program to print star pattern in triangle shape

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 star pattern in triangle shape


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

 
* 
* * 
* * * 
* * * * 
* * * * *


Post a Comment

0 Comments