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