
how to print this??
with the use of only JSP.......
1 23 456 78910

Here is the jsp number pattern example:
1
2 3
4 5 6
7 8 9 10
<%@page language="java"%>
<%
int k = 1;
for(int i=1; i<= 4 ;i++){
for(int j=1; j <= i ; j++){
out.println(k+" ");
k = k + 1;
}
out.println("<br>");
}
%>
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.