I want to create a jsp page such that i can calculate the grade for a paricular student
I have a jsp page where i can select the student name and enter the mark for subject wise .
eg:
<table>
<tr>
<td>Student name</td><td><select><option value="">Pooja</option><option value="">Rani</option></select>
<td>Subject <select><option value="" selected >Maths</select>
<td>Mark</td>
<td><input type="text ></td></tr>
<tr><td>Student name</td><td><select><option value="">Pooja</option><option value="">Rani</option></select>
<td>Subject <select><option value="" selected >English</option></select>
<td>Mark</td><td><input type="text ></td></tr>
</table>
Now how to create a logical condition such that if Pooja has 80 marks in english and 80 in maths , only then grade is B. I mean how to dynamically create an if condition. alos how to add a logical operator in front end