JAVA program for triangle number pattern 11

JAVA program for triangle number pattern 11

This program is to print triangle number pattern 11 in JAVA.

12345
2345
345
45
5

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 np11
{
	public static void main(String args[])
	{
		int i,j,n;
 		Scanner sc = new Scanner(System.in);
    		System.out.println("Enter the no of lines");
 		n=sc.nextInt();
    		for(i=1;i<=n;i++)
    		{
			
        		for(j=i;j<=n;j++)
        		{
            			System.out.print(j);
        		}
 
        		System.out.println("");
    		}
	}
}

Output

Share Me!