<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<p style="font-family:黑体;font-size:36">
<br>英文字母表:</br>
</p>
<p style="font-family:宋体;font-size:25;color:blue">
<%char upperCase;
char lowerCase;
for(upperCase='A';upperCase<='Z';upperCase++){
lowerCase=(char)(upperCase+32);
out.print(upperCase+"("+lowerCase+")"+" ");
if(upperCase=='M')
out.print("<br>");
}
%>
</p>
</body>
</html>