Showing posts with label Java Program to print Reverse pyramid. Show all posts
Showing posts with label Java Program to print Reverse pyramid. Show all posts

Monday, 28 May 2018

Java Program to print Reverse pyramid


Pyramid Sample:-

12345
1234
123
12
1

Sample Program:-


public class ReversePyramid {  
      public static void main(String[] args) {  
           for (int i = 5; i > 0; i--) {  
                for (int j = 0; j < i; j++) {  
                     System.out.print(j + 1);  
                }  
                System.out.println("");  
           }  
      }  
 }  

Output:-
 12345  
 1234  
 123  
 12  
 1  

Enjoy Coding.