jsp实现剪子石头布小游戏
本文实例为大家分享了jsp实现剪子石头布游戏的具体代码,供大家参考,具体内容如下
老师前两天除了一道小游戏的题目要大家做做,其实不太难,用了接近两个小时才做出来,先看一下题目。
问题描述:实现两个页面,第一个页面要求用图片或radio或select,第二个页面显示输赢的结果并把所有的结果保存输出。剪子石头布小游戏,跟常理一样,不必多说。
实现过程:使用form表单进行跳转处理,难点在图片传值这部分和数据统计部分,以下是代码:
游戏界面代码:
<html> <head> <base href="<%=basepath%>" > <title>欢迎来到剪刀石头布游戏大厅</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" > --> </head> <body> <!-- 获得当前web project的名字 --> <%string pa = request.getcontextpath(); %> <!-- form表单页面跳转 --> <form action="result.jsp" method="post"> <input type="radio" name="option" value="jiandao"><img alt="剪刀" src="<%=pa%>/images/jiandao.jpg"> <input type="radio" name="option" value="shitou"><img alt=石头" src="<%=pa%>/images/shitou.jpg"> <input type="radio"name="option" value="bu"><img alt="布" src="<%=pa%>/images/bu.jpg"> <input type="submit"value="确定"/> </form> </body> </html>
游戏界面:
游戏结果页面代码:
<html> <head> <base href="<%=basepath%>" > <title>my jsp 'result.jsp' starting page</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="cache-control" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <!-- <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" rel="external nofollow" > --> </head> <body> <% string pathnew=request.getcontextpath(); //获取游戏参与者的选项值 string res=request.getparameter("option"); string reslong=res+".jpg"; //产生随机数进行匹配图片 int com=(int)math.random()*3; string computer=string.valueof(com); //computer=0 jiandao //computer=1 shiyou //computer=2 bu if(computer.equals("0")){ computer="jiandao"; } else if(computer.equals("1")){ computer="shitou"; } else{ computer="bu"; } string computerlong=computer+".jpg"; int win=0; int lost=0; int ping=0; object objwin=session.getattribute("win"); object objlost=session.getattribute("lost"); object objping=session.getattribute("ping"); if(objwin==null){ session.setattribute("win",string.valueof(win)); } if(objlost==null){ session.setattribute("lost",string.valueof(lost)); } if(objping==null){ session.setattribute("ping",string.valueof(ping)); } %> <h3>结果是</h3> <!-- 图片传值 --> 您出的是:<img alt="" src="<%=pathnew %>/images/<%=reslong %>"> <span style="bold" color="red">vs 电脑出的是:<img alt="" src="<%=pathnew %>/images/<%=computerlong %>"> <% //逻辑判断,session更新统计值, if(res.equals(computer)){ out.println("平局!"); //session.setattribute("ping",string.valueof(integer.valueof((string)session.getattribute("ping"))+1)); session.setattribute("ping",string.valueof(integer.valueof((string)session.getattribute("ping"))+1)); } else if((res.equals("jiandao")&&computer.equals("bu"))||(res.equals("shitou")&&computer.equals("jiandao"))||(res.equals("bu")&&computer.equals("shiyou"))){ out.println("您赢了!"); //session.setattribute("win",string.valueof(integer.valueof((string)session.getattribute("win"))+1)); session.setattribute("win",string.valueof(integer.valueof((string)session.getattribute("win"))+1)); } else{ out.println("您输了!"); session.setattribute("lost",string.valueof(integer.valueof((string)session.getattribute("lost"))+1)); //session.setattribute("lost",string.valueof(integer.valueof((string)session.getattribute("lost"))+1)); } %> <h3>统计结果,待写入数据库</h3> 您一共玩了<%=string.valueof( integer.valueof((string)session.getattribute("win"))+integer.valueof((string)session.getattribute("lost"))+integer.valueof((string)session.getattribute("ping")) )%>局<br/> 您赢了<%=string.valueof( integer.valueof((string)session.getattribute("win"))) %>局<br/> 您输了<%=string.valueof( integer.valueof((string)session.getattribute("lost"))) %>局<br/> 打平了<%=string.valueof( integer.valueof((string)session.getattribute("ping"))) %>局<br/> </body> </html>
游戏结果:
这个绝对没作弊,因为我输了5局哪!老师还提过下次要写个类似老虎机的游戏,估计在这个程序上做作弊就可以了。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持硕编程。
相关文章
- jsp+servlet实现文件上传与下载功能
- EJB3.0部署消息驱动Bean抛javax.naming.NameNotFoundException异常
- 在JSP中使用formatNumber控制要显示的小数位数方法
- 秒杀系统Web层设计的实现方法
- 将properties文件的配置设置为整个Web应用的全局变量实现方法
- JSP使用过滤器防止Xss漏洞
- 在JSP页面中动态生成图片验证码的方法实例
- 详解JSP 内置对象request常见用法
- 使用IDEA编写jsp时EL表达式不起作用的问题及解决方法
- jsp实现局部刷新页面、异步加载页面的方法
- Jsp中request的3个基础实践
- JavaServlet的文件上传和下载实现方法
- JSP页面的静态包含和动态包含使用方法