使用JSP编程实现,通过键盘输入2个数,比较2个数的大小,输出大数

 我来答
  • 你的回答被采纳后将获得:
  • 系统奖励15(财富值+成长值)+难题奖励30(财富值+成长值)
gdmmd
2015-10-10 · TA获得超过1279个赞
知道大有可为答主
回答量:1581
采纳率:66%
帮助的人:996万
展开全部

确定使用JSP实现么?

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>

<%
    String temp1 = request.getParameter("num1");
    String temp2 = request.getParameter("num2");
    String max = null;
    if (temp1 != null && temp2 != null) {
        int a = Integer.parseInt(temp1);
        int b = Integer.parseInt(temp2);

        max = String.valueOf(Math.max(a, b));
    }
%>
<body>
    <form action="index.jsp">
        请输入第一个数: <br> 
        <input type="text" id="num1" name="num1" value="<%=(temp1 == null ? "" : temp1)%>">
        请输入第二个数: <br>
         <input type="text" id="num2" name="num2" value="<%=(temp2 == null ? "" : temp2)%>">
        <input type="submit" value="提交">
    </form>
    两者的最大值是:
    <input type="text" id="max" name="max"
        value="<%=(max == null ? "" : max)%>">
</body>
</html>
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
azhqgu
2015-10-09 · TA获得超过323个赞
知道小有建树答主
回答量:563
采纳率:75%
帮助的人:199万
展开全部
找我,我给你做。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式