
1 1 12 3 123 6 1234 10 12345 15
write java program for above series?

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);
}
}
}
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.