Pattern program 6 on May 07, 2015 Get link Facebook X Pinterest Email Other Apps public class pattern6 { 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(); } } } Comments
Comments
Post a Comment