resultadoMano.jsp 695 Bytes
Newer Older
roshka committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>Insert title here</title>
	</head>
	<body>
		<h1>Cartas en la mesa</h1>
		<%
			String[] resultado = (String[])request.getAttribute("resultado");
			String[] cartasEnlaMesa = (String[])request.getAttribute("cartasEnLaMesa");
			for(int i=0;i<cartasEnlaMesa.length;i++){
		%>
			<img src=<%=cartasEnlaMesa[i]%> alt="carta mesa" width="120" height="180">
		<%} %>
		<h1>La mejor mano es:</h1>
		<%
			for(int i=0;i<resultado.length;i++){
		%>
			<img src=<%=resultado[i]%> alt="carta mesa" width="120" height="180">
		<%} %>
	</body>
</html>