In this tutorials, we are going write a Java Program For Triangle Part 3 to create a below. This is a Part 3 of the complete example. You can follow the complete 4 parts to complete the entire example.
Java program for Triangle Part – 3 :
Triangle_Top_LeftToRight.java
package com.onlinetutorialspoint.patterns;
import java.util.Scanner;
/*
 * *
 * **
 * ***
 * ****
 * *****
 */
public class Triangle_Top_LeftToRight {
    public static void main(String args[]) {
        /* Getting the input from keyboard */
        Scanner scanner = new Scanner(System.in);
        System.out.println("Enter the size of Triangle");
        int size = scanner.nextInt();
        for (int i = 1; i <= size; i++) {
            for (int j = 1; j <= i; j++) {
                System.out.print("*");
            }
            System.out.println();
        }
    }
}By running the above Java program, you can get the below shape.
Output :
Terminal
javac  Triangle_Down_RightToLeft.java
java  Triangle_Down_RightToLeft
 
