jsp第二次作业

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html>
<html>
<head>
<title>Insert title here</title>
</head>
<body>
    <%!char bigword=65,smallword=97; %>
    <%
        for(int i=0;i<26;i++){
            out.print(bigword++);
            out.print(smallword++);
            out.print(" ");
        }
     %>
</body>
</html>

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="utf_8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
<style type="text/css">
    td{
        border:1px solid;
         100px;
        height: 50px;
    }
</style>
</head>
<body>
    <table>
        <%for(int i=0;i<3;i++){
            %><tr>
                <%for(int j=0;j<5;j++){
                    %><td></td><%
                } %>
            </tr><%
        } %>
    </table>
</body>
</html>
原文地址:https://www.cnblogs.com/zf08/p/12551312.html