在Eclipse 中实现简单的猜拳游戏
<%@ 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>
<h2>猜拳游戏</h2><hr color="blue">
<body>
<form action="Game_result.jsp"method="post"> <!-- 使用form表单提交的方式来向后端Action传值以及跳转页面 -->
<p align="center">
<font color="blue" size="5">
<input type="radio"name="guess"value="0">剪子 <!--input type=radio 表示单选框 name属性可以对其分组(单选意思) -->
<input type="radio"name="guess"value="1">石头
<input type="radio"name="guess"value="2">布<br>
<input type=&#