JAVA program to print a pattern of an inverted right triangle using star

JAVA program to print a pattern of an inverted right triangle using star

This JAVA program is to print a pattern of an inverted right triangle using star.

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

If you need a dry run of the program or any other query, then kindly leave a comment in the comment box or mail me, I would be more than happy to help you.

Program

import java.util.*;

class sp3
{
	public static void main(String args[])
	{		
		int i,j,n;
		Scanner sc = new Scanner(System.in);
    		System.out.println("Enter no of lines");
    		n = sc.nextInt();
    
		for(i=1;i<=n;i++)
    		{
        		for(j=i;j<=n;j++)
        		{
            			System.out.print("* ");
        		}
        		System.out.println("");
    		}	
	}
}

Output

Share Me!