Computer >> 컴퓨터 >  >> 프로그램 작성 >> 프로그램 작성

JSP 페이지에서 for 루프를 작성하는 방법은 무엇입니까?

<시간/>

다음은 for입니다. 루프 예 -

<%! int fontSize; %>
<html>
   <head>
      <title>FOR LOOP Example</title>
   </head>
   <body>
      <%for ( fontSize = 1; fontSize <= 3; fontSize++){ %>
         <font color = "green" size = "<%= fontSize %>">
            JSP Tutorial
         </font><br />
      <%}%>
   </body>
</html>

위의 코드는 다음 결과를 생성합니다 -

JSP Tutorial
JSP Tutorial
JSP Tutorial