代码没有显示错误 但是运行不了
求大神帮忙看看
求大神帮忙看看
2016-09-13
<%@ 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=ISO-8859-1">
<title>数学算数</title>
</head>
<body>
<%!
String prinmultitable(){
String s="";
for(int i=1;i<=9;i++){
for(int j=1;j<=i;j++){
s+=i+"*"+j+"="+(i*j)+" ";
}
s+="<br>";//追加换行标签
}
return s;
}
%>
<h1>九九乘法表</h1><hr>
<%=prinmultitable()%>
</body>
</html>
为什么在eclipse中运行不起啊?
举报