关于此段jsp代码的问题,请教一下
<%@ page contentType="text/html;charset=GB2312" %> <HTML>
<BODY>
<P>请输入圆的半径 </p>
<BR>
<FORM name="form" action="" method=get>
<input type="text" name="input1" size="10">
<input type="SUBMIT" value="开始计算" name=submit>
</FORM>
<%!
public class Circle{
double r;
Circle(double r){
this.r=r;
}
public double getArea(){
return Math.PI*r*r;
}
public double getPeremater(){
return Math.PI*2*r;
}
}
%>
<%
String str=request.getParameter("input1");
double r;
if(str!=null)
{
r=Double.parseDouble(str);
}
else
{
r=1;
}
Circle circle=new Circle(r);
%>
<p>圆面积是:
<BR>
<%=circle.getArea()%>
<p>圆周长是:
<BR>
<%=circle.getPeremater()%>
</body>
</html>
我想问一下,如果我把
%>
<%
去掉为什么就运行不了,实际上,头和尾都没有改变啊,只是中间去掉而已,还希望高手指导
搜索更多相关主题的帖子:
jsp 代码 输入
----------------解决方案--------------------------------------------------------
<%!......%>这个是声明信息
<%.......%>这个是java代码片段
所以去掉中间的会报错
另外:<%=......%>这个是输出信息,不能用分号结束.
----------------解决方案--------------------------------------------------------
www.belrion.com 贝尔中国
www.belrion.com 贝尔中国anyone of you bought any wow gold from www.belrion.com
or sold any gold to www.belrion.com.cn ? I was told they deliver and are good and fast
appreciate if anyone here can give me some feedback ^^
----------------解决方案--------------------------------------------------------
楼上的是老外吗?如果不是请不要用鸟语沟通
----------------解决方案--------------------------------------------------------