Pattern program 5 on May 06, 2015 Get link Facebook X Pinterest Email Other Apps public class pattern5 { public static void main( String arg[]){ for(int i=1;i<=5;i++) { for(int j=1;j<=i;j++) { System.out.print(j); } System.out.println(); } } } Comments
Comments
Post a Comment