Finding Average in JSP
In mathematics, an average is a measure of the middle of the data set. The average value is the total amount divided by the total number of elements.
The code of the program is given below:
<HTML>
<HEAD>
<TITLE>Finding Average in jsp </TITLE>
</HEAD>
<BODY> <table align= "left" border="1" bgcolor="#FFFFCC">
<H1>Finding Average in jsp </H1>
<tr>
<td>
<%
float grades[] = {98, 99, 100, 97, 78, 96};
float sum, average;
sum = 0; for (int j = 0; j < grades.length; j++) {
sum = grades[j] + sum;
}
average = sum / grades.length; out.println("Average grade = " + average);
%>
</td>
</tr>
</table>
</BODY>
</HTML>
|
Output of the program:
