码迷,mamicode.com
首页 > Web开发 > 详细

jsp---猜数字游戏,深有感触

时间:2014-05-10 02:32:10      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:blog   class   code   java   ext   c   

猜数字游戏注意两点、1.随机数和猜的数字不能放在同一个页面,不然随机数不停出现,猜的数字不可能相等的。

          2.数据类型的相互转换。包装类Integer和int的用法,前者是类,后者是基本数据类型

 

cai.jsp

  

1
2
3
4
5
6
7
8
9
<body>
去猜数字----<a href="b.jsp">guess</a>
 <%
  int a=(int)(Math.random()*100);
  session.setAttribute("number",a);
   
  %>
 <%="随机数为那:"+session.getAttribute("number") %>
</body>

  b.jsp

1
2
3
4
5
6
<body>
<form action="da.jsp">
<input type="text" name="guess"/><br/>
<input type="submit" value="提交"/>
 
</form>

  da.jsp

  

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<body>
 
  <%
      Integer str1=(Integer)session.getAttribute("number");      
     
      String str2=request.getParameter("guess");
      int num2=Integer.parseInt(str2);
      int num1=Integer.valueOf(str1);
      if(num1==num2){
          out.print("您好,猜对了,再玩一次,<a href=‘cai.jsp‘>guess</a>");
       
      }else if(num1>num2){
          out.print("您好,猜小了,再猜一次,<a href=‘b.jsp‘>guess</a>");
       
      }else if(num1<num2){
          out.print("您好,猜大了,再猜一次,<a href=‘b.jsp‘>guess</a>");
      }
       
   
   %>

  

      

    

jsp---猜数字游戏,深有感触,布布扣,bubuko.com

jsp---猜数字游戏,深有感触

标签:blog   class   code   java   ext   c   

原文地址:http://www.cnblogs.com/langlove/p/3719805.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!