공부하는 블로그

스크립트릿 예제 본문

Develop/JSP

스크립트릿 예제

모아&모지리 2018. 3. 6. 17:15
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<%@ page contentType = "text/html; charset=UTF-8" %>
 
<html>
<head><title>Test</title></head>
<body>
<%
  int sum = 0;
  for (int i = 0; i<=10; i++) {
    sum = sum + i;
  }
%>
1부터 10까지의 합은 <%= sum %>입니다.
 
</body>
</html>
cs


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%@ page contentType = "text/html; charset=UTF-8" %>
 
<html>
<head><title>Test</title></head>
<body>
<%
  int sum = 0;
  for (int i = 0; i<=10; i++) {
    sum = sum + i;
  }
%>
1부터 10까지의 합은 <%= sum %>입니다.
<br>
 <!--두번째 스크립트릿 시작-->
<%
  int sum2 = 0;
  for (int i = 11; i <=20; i++) {
    sum2 = sum2 + i;
  }
%>
11부터 20까지의 합은 <%= sum2 %> 입니다.
</body>
</html>
cs


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<%@ page contentType = "text/html; charset=UTF-8" %>
<%!
  public int multiply(int a, int b) {
    int c = a * b;
    return c;
  }
%>
<html>
<head><title>Test</title></head>
<body>
 
10 * 25 = <%= multiply(1025%>
 
</body>
</html>
 
cs



'Develop > JSP' 카테고리의 다른 글

HTML폼과 요청파라미터의 처리 (예제)  (0) 2018.03.06
현재시간을 출력해주는 JSP코드  (0) 2018.03.06
Tomcat서버 띄우기  (0) 2018.02.20
(웹개발) header footer 나누기  (0) 2017.09.28