8. JSP Programs a. Create a JSP page that prints temperature conversion (from Celsius to Fahrenheit) chart

<%@ page session="false" %>
<table border="0" align="center" width="50%">
<tr>
   <th align="right">Celsius</th>
   <th align="right">Fahrenheit</th>
</tr>
<%
   for (int c = 0; c <= 100; c += 10) {
      int f = 32 + 9*c/5;
      out.print("<tr>");
      out.print("<td align=\"right\">" + c + "</td>");
      out.print("<td align=\"right\">" + f + "</td>");
      out.print("</tr>");
   }
%>
</table>