Java—jsp编程

1. 编写 login.jsp,登录时只输入一个昵称。但要检查昵称是否已经被其他用户使用。

源代码

Login.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %><%request.setCharacterEncoding("UTF-8"); //设置编码String username = request.getParameter("username"); //获取用户名if(application.getAttribute("login")==null){Map<String,Integer> map=new HashMap<>();map.put(username,0);application.setAttribute("login",map);session.setAttribute("logging",username);response.sendRedirect("game.jsp");}else{Map cur=(Map)application.getAttribute("login");if(cur.containsKey(username))out.print("<script>alert('此昵称已有人使用过!请重新输入');location.href='login.jsp';</script>");else {cur.put(username,0);application.setAttribute("login",cur);session.setAttribute("logging",username);response.sendRedirect("game.jsp");}}%>

2. 编写 game.jsp, 每次游戏程序随机产生一个 0-9 之间的整数,要求玩家输入自己猜的 数字,并对用户输入数字进行检查,进行如下提示:
(1)如果用户猜对了,则提示:恭喜你,猜对了。结束本次游戏。
(2)如果用户猜错了,则提示:你猜的数字太(大或小)了。要求用户继续猜。 如果连续 3 次没有猜对,则提示:游戏失败。
一次游戏结束时,将用户本次猜数字情况记入“排行榜”。
然后询问用户是否继续新的游戏,果用户选择继续,则开始新一次游戏,
3. 必须登录后才能进入游戏页面,而进入登录页面和排行榜页面,无须登录

源代码

Game.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>Title</title>
</head>
<body>
<%String user=(String) session.getAttribute("logging");if(user==null)response.sendRedirect("login.jsp");int number=(int)(Math.random()*10)+1;session.setAttribute("num",number);session.setAttribute("count",0);
%>
<%=user%>登录成功
输入你猜的数
<form action="Result.jsp" method="post" name=form><input type="text" name="boy"><input type="submit" value="提交" name="submit">
</form>
</body>
</html>Result.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>Title</title>
</head>
<body>
<%String str=request.getParameter("boy");int guessNumber=Integer.parseInt(str);int n= (Integer) session.getAttribute("count");int realnumber= (Integer)session.getAttribute("num");if(n==3||guessNumber==realnumber) response.sendRedirect("successjsp.jsp");if(guessNumber>realnumber){n=n+1;session.setAttribute("count", n);out.println("你猜的数字太大了<br>");}else {n=n+1;session.setAttribute("count", n);out.println("你猜的数字太小了<br>");}
%>
输入你猜的数
<form action="Result.jsp" method="post" name=form><input type="text" name="boy"><input type="submit" value="提交" name="submit">
</form>
</body>
</html>successjsp.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>Title</title>
</head><body><%Map cur=(Map)application.getAttribute("login");int c= (Integer) cur.get((String)session.getAttribute("logging"));cur.put((String)session.getAttribute("logging"),c+1);application.setAttribute("login",cur);int count= (Integer) session.getAttribute("count");int num= (Integer) session.getAttribute("num");String res=new String();long startTime=session.getCreationTime();long endTime=session.getLastAccessedTime();if(count==4)res="游戏失败";elseres="游戏成功";%>
游戏结果:<%=res%>
您共猜错了<%=count-1%>次
用时<%=(endTime-startTime)/1000 %>秒
这个数字就是<%=num %>
<form action="game.jsp" method="post" name=form><input type="submit" value="重新开始" name="submit">
</form>
</body>
</html>Rank.jsp
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head><title>Title</title>
</head>
<h1>排行榜</h1>
<body>
<%Map cur=(Map)application.getAttribute("login");out.println("用户名"+"    "+"成功次数<br/>");for(Object c:cur.keySet()){if(c==null) continue;out.println((String)c+"    "+cur.get((String)c)+"<br/>");}%>
</body>
</html>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/392026.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Java 8 Optional类深度解析

2019独角兽企业重金招聘Python工程师标准>>> 身为一名Java程序员&#xff0c;大家可能都有这样的经历&#xff1a;调用一个方法得到了返回值却不能直接将返回值作为参数去调用别的方法。我们首先要判断这个返回值是否为null&#xff0c;只有在非空的前提下才能将其作…

鸽子 迷信_人工智能如何帮助我战胜鸽子

鸽子 迷信鸽子回避系统 (Pigeon Avoidance System) Disclaimer: You are reading Part 1 that gives an overview of the project. Part 2 describes the technical setup and data collection. Part 3 is about how to train the Pigeon Recognition Model and run it on Rasp…

华为鸿蒙会议安排,2020华为HDC日程确定,鸿蒙、HMS以及EMUI 11成最关注点

原标题&#xff1a;2020华为HDC日程确定&#xff0c;鸿蒙、HMS以及EMUI 11成最关注点HDC&#xff1a;华为开发者大会&#xff0c;目前已经确定将在9月10日正式开幕。日前华为已经在其官网公布了HDC的日程&#xff0c;从现在的消息看华为开发者大会有三大点最受业内关注。鸿蒙操…

反射、元类

一、反射 1、什么是反射&#xff1a;就是反省&#xff0c;自省的意思 反射指的是一个对象应该具备&#xff0c;可以增、删、改、查属性的能力&#xff0c;通过字符串来操作属性 涉及的四个函数&#xff0c;这四个函数就是普通的内置函数&#xff0c;只是没有下划线而已&#xf…

Java—简单的图书管理系统

简单的图书管理系统 通过数据源和DAO对象访问数据库。其中JavaBeans实现模型&#xff0c;访问数据库&#xff0c;Servlet实现控制器&#xff0c;JSP页面实现视图。 • 模型包括2个JavaBean&#xff1a;BookBean用于存放图书信息&#xff0c;BookDAO用于访问数据库。 • 控制器包…

成功的秘诀是什么_学习编码的10个成功秘诀

成功的秘诀是什么This post was originally published on Coder-Coder.com.该帖子最初发布在Coder-Coder.com上 。 If you’re teaching yourself how to code, you may have more questions than answers when you’re starting out.如果您正在教自己如何编码&#xff0c;那么…

ZJUT 地下迷宫 (高斯求期望)

http://cpp.zjut.edu.cn/ShowProblem.aspx?ShowID1423 设dp[i]表示在i点时到达终点要走的期望步数&#xff0c;那么dp[i] ∑1/m*dp[j] 1&#xff0c;j是与i相连的点&#xff0c;m是与i相邻的点数。建立方程组求解。重要的一点是先推断DK到达不了的点。须要bfs预处理一下进行…

html收款页面模板,订单收款.html

&#xfeff;订单收款$axure.utils.getTransparentGifPath function() { return resources/images/transparent.gif; };$axure.utils.getOtherPath function() { return resources/Other.html; };$axure.utils.getReloadPath function() { return resources/reload.html; };…

pandas之时间数据

1.时间戳Timestamp() 参数可以为各种形式的时间&#xff0c;Timestamp()会将其转换为时间。 time1 pd.Timestamp(2019/7/13) time2 pd.Timestamp(13/7/2019 13:05) time3 - pd.Timestamp(2019-7-13) time4 pd.Timestamp(2019 7 13 13:05) time5 pd.Timestamp(2019 July 13 …

scikit keras_Scikit学习,TensorFlow,PyTorch,Keras…但是天秤座呢?

scikit kerasWelcome all! In the first episode of this series, I investigated the four most known machine learning frameworks and discussed which of these you should learn depending on your needs and goals.w ^迎阅读所有&#xff01; 在本系列的第一集中 &#…

程序员如何学习更好的知识_如何保持学习并成为更好的程序员

程序员如何学习更好的知识by Kevin Gardner凯文加德纳(Kevin Gardner) 如何保持学习并成为更好的程序员 (How to keep learning and become a better coder) Coding has come a long way since the days of Robert Taylor and ARPANET and Sir Tim Berners-Lee and CERN — an…

Educational Codeforces Round 25 C. Multi-judge Solving

题目链接&#xff1a;http://codeforces.com/contest/825/problem/C C. Multi-judge Solving time limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputMakes solves problems on Decoforces and lots of other different onli…

Java—stream以及集合框架使用

1) 编写Student类&#xff0c;主要属性包括学号、姓名、性别、班级 2) 编写Score类&#xff0c;主要属性包括&#xff1a;学号、课程名、分数 3) 模拟期末考试的成绩统计应用场景&#xff0c;要求 (1) 所有学生名单及对应科目成绩已经初始化在数组中 (2) 要求输出每门课程的所有…

山东省2021年高考成绩查询平台6,山东2021年高考成绩改为6月26日前公布

6月11日&#xff0c;山东省教育厅举行2021年第一次高考新闻发布会&#xff0c;介绍2021年高考基本情况、评卷安排、成绩公布等相关工作。山东省教育招生考试院新闻发言人、普招处处长李春光介绍&#xff0c;根据近期国家有关工作要求和强基计划招生工作需要&#xff0c;原定于6…

如何在vuejs里禁用eslint语法检查工具

eslint好是好&#xff0c;可要求很苛刻&#xff0c;对于我这种写代码很糙的媛。。。。。。 搜索的时候有的说加入 /* eslint-disabled */&#xff08;有用&#xff0c;但只是部分代码享受此待遇&#xff09; 还有说删除.eslintrc.js里包含eslint关键字的块&#xff0c;a---o---…

数据结构两个月学完_这是我作为数据科学家两年来所学到的

数据结构两个月学完It has been 2 years ever since I started my data science journey. Boy, that was one heck of a roller coaster ride!自从我开始数据科学之旅以来已经有两年了 。 男孩 &#xff0c;那可真是坐过山车&#xff01; There were many highs and lows, and…

leetcode 888. 公平的糖果棒交换(set)

爱丽丝和鲍勃有不同大小的糖果棒&#xff1a;A[i] 是爱丽丝拥有的第 i 根糖果棒的大小&#xff0c;B[j] 是鲍勃拥有的第 j 根糖果棒的大小。 因为他们是朋友&#xff0c;所以他们想交换一根糖果棒&#xff0c;这样交换后&#xff0c;他们都有相同的糖果总量。&#xff08;一个…

如何使用JavaScript检查输入是否为空

by Zell Liew由Zell Liew 如何使用JavaScript检查输入是否为空 (How to check if an input is empty with JavaScript) Last week, I shared how to check if an input is empty with CSS. Today, let’s talk about the same thing, but with JavaScript.上周&#xff0c;我分…

数学哲学与科学哲学和计算机科学的能动作用,数学哲学与科学哲学和计算机科学的能动作用...

3 数学哲学与计算机科学的能动作用数学哲学对于计算机科学的影响主要表现于以下的事实&#xff1a;一些源于数学哲学(数学基础研究)的概念和理论在计算机科学的历史发展中发挥了十分重要的作用。例如&#xff0c;在此可以首先提及(一阶)谓词演算理论&#xff1a;这是由弗雷格(…

AngularDart4.0 指南- 表单

2019独角兽企业重金招聘Python工程师标准>>> 表单是商业应用程序的主流。您可以使用表单登录&#xff0c;提交帮助请求&#xff0c;下订单&#xff0c;预订航班&#xff0c;安排会议&#xff0c;并执行无数其他数据录入任务。 在开发表单时&#xff0c;创建一个数据…