%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="servlets.SurveyServlet"%>
Thank You!
<%
String animalNames[] = servlets.SurveyServlet.ANIMAL_NAMES;
int votes[] = (int[]) request.getAttribute(SurveyServlet.votesAttribute/*"votes"*/);
String formattedPercentages[] = (String[]) request.getAttribute(SurveyServlet.percentageAttribute /*"percentages"*/);
int totalVotes = 0;
%>
Thank you for your input!
Results:
| Animal |
# of Votes |
% of Votes |
<%
for (int i = 0; i < animalNames.length; i++) {
%>
| <%=animalNames[i]%> |
<%=votes[i]%> |
<%=formattedPercentages[i]%> |
<%
totalVotes += votes[i];
%>
<%
}
%>
Total Votes:
<%=totalVotes%>
Vote Again