编写一个rect.jsp页面,该页面提供一个表单,用户通过表单输入正方形的边长,提交给com.jsp

计算正方形的周长和面积。(要代码哦~)
2024-12-20 03:11:29
推荐回答(1个)
回答1:

rect.jsp


宽:
高:


com.jsp
<%
String width = request.getParameter("width");
String height = request.getParameter("height");.
int w = Integer.parseInt(width==null||"".equals(widht)?"0":width);
int h = Integer.parseInt(height==null||"".equals(height)?"0":height);
int area = w*h;
%>
面积为<%=String.valueOf(area) %>