JSP程序设计问题
发布网友
发布时间:2022-05-12 17:53
我来回答
共2个回答
热心网友
时间:2023-10-16 15:25
<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>
<html>
<head>
<title>标题名</title>
<%
double s,c;
public double getArea(double a){
s=3.14*a*a;
return s;
}
public double getLength(double a)
{
c=2*a*3.14;
return c;
}
%>
<body><form action="" name="form1" method="post">
请输入圆的半径:<input type="text" name="r" >
<input type="submit" name="sub" value="提交">
<input type="reset" name="re" value="重置">
</form>
<% String r;double a;
r=request.getParameter("r");
if(r!=null && !r.equal("")){
a=Integer.ParseInt(r);
%>
圆的面积是:<%=getArea()%>
圆的周长是:<%=getLength()%>
</body>
<html>
热心网友
时间:2023-10-16 15:25
分太少了