zoukankan      html  css  js  c++  java
  • jsp第三次作业

    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
    <%@ include file="circle.jsp" %>
    <%@ include file="ladder.jsp" %>   
    <!DOCTYPE html>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <body>
    </body>
    </html>
    <%@ 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>
    <body>
        <div>
            <form action="main.jsp">
           请输入梯形的上底: <input type="text" name="a"> <br>
           请输入梯形的下底: <input type="text" name="b" > <br>
           请输入梯形的高: <input type="text" name="h"> <br>
             <input type="submit" value="计算结果"> <br><br>
             </form>
         </div>
              <%
            String a=request.getParameter("a");
            String b=request.getParameter("b");
            String h=request.getParameter("h");
            if(a!=null&&b!=null&&h!=null){
                double A=Double.parseDouble(a);
                double B=Double.parseDouble(b);
                double H=Double.parseDouble(h);
                double M=(A+B)*H/2;
                out.print("梯形的面积为:"+M);
                request.setAttribute("A", a);
                request.setAttribute("B", b);
                request.setAttribute("H", h);
                request.setAttribute("M", M);
            }
        %>
    </body>
    </html>
    <%@ 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>
    <body>
        <div>
            <form action="main.jsp">
                    请输入圆的半径:<input type="text"  name="R" > <br>
                    <em id="__mceDel">         <input type="submit" value="计算结果"> <br>
            </form>
        </div>
        <%
            String R=request.getParameter("R");
            if(R!=null){
                double PI=3.14;
                double r=Double.parseDouble(R);
                double area=r*r*3.14;
                out.print("圆的面积为"+area);
                request.setAttribute("r", r);
                request.setAttribute("area", area);
            } 
        %>
    </body>
    </html>
    </em>

     

  • 相关阅读:
    Linux中文件夹的读、写、执行权限
    限制提权与sudo -s
    shell支持正则:Linux shell判断字符串是否以某些字符开头
    Linux ssh ftp 用户访问权限
    set ff=unix 转换 为 linux 执行shell报bad interpreter:No such file or directory错误
    Sftp服务器搭建和限制用户目录
    ssh 配置文件讲解大全 ssh调试模式 sftp scp strace进行调试 特权分离
    PAM API
    ssh的chroot配置
    PAM详解(一)PAM介绍
  • 原文地址:https://www.cnblogs.com/xiaohusha/p/12563890.html
Copyright © 2011-2022 走看看