1234567891011121314151617181920212223 |
- <%--
- Created by IntelliJ IDEA.
- User: x'b'w
- Date: 2021/5/21
- Time: 19:52
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>例子3</title>
- </head>
- <body>
- <%
- request.setAttribute("no1",19);
- request.setAttribute("no2",10);
- request.setAttribute("no3",11);
- %>
- ${no1>no2}
- ${no3<no2}
- </body>
- </html>
|