<%@ page contentType="text/html; charset=gb2312"%> <html> <body><font size=5> <%! int i=9; %> <% i++; %> <p> you are the <%=i %> </p> </font> </body> </html>
<%@page contentType="text/html; charset=gb2312" %>
<html>
<body>
<%!
int i=0;
%>
<%!
synchronized int countpeople(){
i++;
return i;
}
%>
you are the
<%= countpeople() %>
</body>
</html>
