第二周作业

<body>
    <%
    Calendar c=Calendar.getInstance();
    int h=c.get(Calendar.HOUR);
    int m=c.get(Calendar.MINUTE);
    int s=c.get(Calendar.SECOND);
    String a="";//java注释
    if(h>=0&&h<=12){
        a="上午好";
    }
    if(h>=13&&h<=17){
        a="下午好";
    }
    if(h>=18&&h<=23){
        a="晚上好";
    }
     %>
     <tr align="center"><td>现在时间是:<%=h %>:<%=m %>:<%=s %>--<%=a %></td></tr>
  </body>

 

 2.

<body>
  <%
  int y=2013;
  String a="";
  if(y%100!=0&&y%4==0||y%400==0){
  a="是闰年";
  }else{
  a="不是闰年";<!--html注释-->
  }
   %>
   <tr align="center"><td>2013年<%=a %></td></tr>
  </body>

 

 3.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'index.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
  </head>
  
  <body>
  <% 
  for(int i=1;i<=5;i++){ %>
  <hr width="<%=i*100%>px"><%--jsp注释 --%>

  <%  }%>
  </body>
</html>

 

posted @ 2022-03-13 16:34  777733333  阅读(26)  评论(1编辑  收藏  举报