News

public class Pyramid_Pattern //Program to Print A Basic Pyramid Pattern public static void pyramid(int n) //Function To Print the Pattern For a Given Limit for(int i=1 ; i<=n ; i++) //Loop For Each ...
Palindromic pyramid pattern The palindromic number are the number whose reverse is equal to the original number. For example- 12321 is a original number whose reverse is same as the original number, ...