what is the logic of this pattern?

                                          1
                                         121  
                                        12321
                                       1234321
                                      123454321
View Answers

July 27, 2011 at 9:29 PM

this is my code.. use string and array:P

public class pattern_ { public static void main(String args[]) {int a[]={1,2,3,4,5}; String S=""; String S1=""; String space=" ";//use a for loop in case of user inputs to create this string int j=5;//space length for(int i=0;i


March 22, 2012 at 2:09 PM

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

}

}









Related Tutorials/Questions & Answers:
Advertisements