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

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

<시간/>

다음은 동안입니다. 루프 예 -

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

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

JSP Tutorial
JSP Tutorial
JSP Tutorial