Home Jsp Simple-jsp-example Finding Average in JSP
Questions:Ask|Latest



Finding Average in JSP
Posted on: March 11, 2008 By Deepak Kumar
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.

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:

 

Download this example.


Recommend the tutorial

Ask Questions?    Discuss: Finding Average in JSP  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 
Comments