import java.util.Scanner; class CompletePyramid2 { 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 spacing for (int j = 1; j <= size - i; j++){ System.out.print(" "); } // left half for (int k = i; k >= 1; k--){ System.out.print( "*"); } // right half for (int l = 2; l <= i; l++) { System.out.print("*" ); } // next line System.out.println(); } } } /* =======Output======== Please Enter Pyramid size: 6 * *** ***** ******* ********* ***********