In this Tutorial we are going to write a program that prints Left down triangle . see the below example.
import java.util.Scanner; public class LeftDownPyramid { public static void main(String[] args) { System.out.print("Please Enter Pyramid size: "); Scanner read = new Scanner(System.in); int size = read.nextInt(); for(int i=size; i>= 1 ;i--){ for(int j=size; j >=0; j--){ if(j>=i){ System.out.print(" "); } else { System.out.print("*"); } } System.out.println(""); } } } /* =======Output======== Please Enter Pyramid size: 6 ****** ***** **** *** ** *