各位大侠谁能帮我解决一下JSP里下标的问题吗!!进来看一下!
怎么我写的JSP都人不出下标。
像这样的问题:
<html>
<head><title>powers of 2</title></head>
<body>
<center>
<h2>Behole The Powers Of2<h2>
</center>
<table border="2" align="center">
<th>Exponent</th><th>2~Exponent</th>
<% for(int i=0;i<10;i++) %>
<tr><td><%=i %></td>
<td><%=Math.pow(2,i) %></td>
</tr>
<% //end for loop %>
</table>
</body>
</html>
老是有这样的错误:
Note: sun.tools.javac.Main has been deprecated.
/PowerOf2.jsp:10: Undefined variable: i
out.print((i ));
^
/PowerOf2.jsp:11: Undefined variable: i
out.print((Math.pow(2,i) ));
^
2 errors, 1 warning
大侠们!!谁能帮一下忙啊!!拜托!!我都不知道为什么会认不出"i"能不能跟我说一下错在那里!