<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> Thank You! <%@ page import="servlets.SurveyServlet"%> <% String animalNames[] = servlets.SurveyServlet.animalNames; 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:

<% for (int i = 0; i < animalNames.length; i++) { %> <% totalVotes += votes[i]; %> <% } %>
Animal # of Votes % of Votes
<%=animalNames[i]%> <%=votes[i]%> <%=formattedPercentages[i]%>

Total Votes: <%=totalVotes%>

Vote Again