本帖最后由 lyg2013 于 2013-4-10 19:13 编辑
- <%@page import="java.util.*" pageEncoding="utf-8" contentType="text/html;charset=utf-8"%>
- <html>
- <head></head>
- <body style="font-szie:30pt;">
- <%
- for (int i = 0; i<2; i++) {
- %>
- <h1>
- 你好中国
- </h1>
- <%
- out.print(1+1);//打印正确
- out.write(1+1);//什么也不打印
- }
- %>
- <hr />
-
-
-
- now=<%=new Date()%>
- </body>
- </html>
复制代码 |