%@ page import="java.util.Arrays" %><%--
Created by IntelliJ IDEA.
User: x'b'w
Date: 2021/5/14
Time: 14:35
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
Jsp练习
<% for(int i =0;i<11;i++){ %>
<% out.print("输出1-10:"+i); %>
|
<% } %>
<% out.print("---------------------------------");%>
<% for (int j=0;j<13;j++){%>
<% if (j%2==0){%> |
<% out.print("偶数有:" + j);%> |
<% }%> |
<% } %>
<%=
100
%> |
<%=
0.01
%> |
<%=
"我是字符串"
%>
|
<%
String[] names = request.getParameterValues("name");
%> |
<%=
Arrays.toString(names)
%> |