k.jahangir kumar
javaprograms
1 Answer(s)      a year and 9 months ago
Posted in : Java Beginners

1 1 12 3 123 6 1234 10 12345 15

write java program for above series?

View Answers

August 30, 2011 at 11:11 AM


public class PatternExample{
public static void main(String[] args){
    int i,j,k,m,x;
    x=0;
    for(i=1;i<=5;i++){
     for(j=1;j<=i;j++){
      System.out.print(j);
     }
     x=x+i;
     System.out.println(" \t"+x);
    }
  }
}









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.