Sunday, June 12, 2016

Write a Java Program To Print following Pattern:

5 4 3 2 1
5 4 3 2
5 4 3
5 4
5


Sol:  public class PtrNum2  {

          public static void main( String arg[]) {    

         for(int i=1;i<=5;i++) {

             for(int j=5;j>=i;j--) { 

               System.out.print(j+" "); 

           } 

          System.out.println(); 

       }

    }

}

Output:  
Share:

0 comments:

Post a Comment

Recent Posts

Unordered List

Contact Us

Theme Support