Home »
        Java programs 
        
    
        
    Java program to print pyramid of characters using class
    
    
    
    
        Submitted by BalRam Dixit, on May 18, 2017
        PYRAMID of characters printing in Java - This program will print the pyramid of characters till N lines, N will be taken as input from the user.
    
    In this program, we are going to write java code to print the pattern; this is a pattern of characters printed in a pyramid type structure, here we have to read total number of lines of the pyramid through the user.
    
    Consider the program
       
import java.util.Scanner;
public class Pattern2{
	private int num;
	public void setNum(int num){
		this.num=num;
	}
	public int getNum(){
		return this.num;
	}
	public void printAnswer(){
		for(int i=1;i<=getNum();i++){
			for(int j=1;j<=getNum()-i+1;j++){
				System.out.print("  ");
			}
			for(int j=1;j<=i;j++){
				System.out.print((char)(64+j)+" ");
			}
			for(int j=i-1;j>=1;j--){
				System.out.print((char)(64+j)+" ");
			}
			System.out.println();
		}
	}
	public void inputNum(){
        Scanner sc  =   new Scanner(System.in);
        System.out.print("Enter Number  : ");
        int num =   sc.nextInt();
		setNum(num);
	}
	public static void main(String[] ar){
		Pattern2 ob = new Pattern2();
		ob.inputNum();
		ob.printAnswer();
		
	}
}
Output
Enter Number : 5
          A 
        A B A 
      A B C B A 
    A B C D C B A 
  A B C D E D C B A 
    
    
  
    Advertisement
    
    
    
  
  
    Advertisement