반응형
for 문
<%
int j = 0;
for (int i = 1; i <= 10; i++) {
j += i;
}
%>
for 1~ 10까지의 합은<%=j%> <br>
while 문
<%
int k = 0;
int i = 0;
while(i++ < 10)
{
k += i;
}
%>
while 1~ 10까지의 합은<%=k%> <br>
do while 문
<%
int l = 0;
int m = 1;
do
{
l += m;
}while(m++ < 10);
%>
do_while 1~ 10까지의 합은<%=l%>
반응형
'보물창고 > Programming' 카테고리의 다른 글
useBean (dbtmqls, jsp, 웹프로그래밍) (0) | 2011.05.04 |
---|---|
jsp:include (jsp 웹프로그래밍 인클루드 방법) (0) | 2011.05.04 |
jsp:forwarp (웹 프로그래밍 jsp 포워드) (0) | 2011.05.04 |
jsp Cookies (쿠키, 생성, 삭제, 가져오기) (0) | 2011.04.13 |
파이썬과 에디트 플러스 설치시 참고한 사이트 (Python, editplus) (0) | 2011.04.12 |
WxGladeTutorial (파이썬 GUI 툴 튜토리얼, 함수, 메소드, API, methods) (2) | 2011.04.06 |
html 버튼 태그 정리된 곳 (0) | 2011.03.30 |
request 헤더 정보 출력 jsp (accept, accept-language, cache-control, accept-encoding,user-agent, host, connection, cookie) (0) | 2011.03.30 |