jsp第二次作业(1)

<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<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>

 

posted @ 2020-03-18 09:34  IS'ME  阅读(86)  评论(0)    收藏  举报