<%! //--- ! 는 선언부이다.
/*
Scripting Elements는 JSP Page에 직접 코드를 끼워 넣을 수 있게 합니다.
JSP Scripting Elements는 세가지 타입( Declaration, Expression, Scriptlet ) 로 나눌 수 있습니다.
*/
int mathPoint[] = {30,50,80,20};
public double getAverage(){
double sum = 0;
for( int i = 0; i < mathPoint.length;i++){
sum += mathPoint[i];
}
return sum/mathPoint.length;
}
public double getBunsan(){
double sum = 0;
double average = getAverage();
for( int i = 0 ; i < mathPoint.length; i++){
sum += Math.pow((mathPoint[i] - average),2);
}
return sum/mathPoint.length;
}
public double getPyosun(){
return Math.sqrt(getBunsan());
}
%>
<html>
<body>
Declaration & Expression<p>
해당 점수에 대한 결과
평균 : <%=getAverage() %><br>
분산: <%=getBunsan() %><br>
표준편차 : <%=getPyosun() %><br>
</body>
Posted by 홍반장