In this Tutorial we are going to write a program that prints Right down triangle . see the below example.
import java.util.Scanner; public class RightDownPyramid { 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=1; j <= size; j++){ if(j<=i){ System.out.print("*"); } else { System.out.print(" "); } } System.out.println(""); } } } /* =======Output======== Please Enter Pyramid size:6 ****** ***** **** *** ** *