Thu Oct 09, 2008 11:45 pm
<%@page language="java" %>
<%@page language="java" session="true" %>
<%@page language="java" session="true" errorPage="error.jsp" %>
<%@page language="java" import="java.sql.*, java.util.*" %>
<%@ include file="/title.jsp"%>
<%!
int radius = 7;
double pi = 3.1415;
%>
<%!
double radius = 7;
double pi = 3.1415;
double area()
{
return pi*radius*radius;
}
%>
<%
String id, name, dob, email, address;
id = request.getParameter("id");
name = request.getParameter("name");
dob = request.getParameter("dob");
email = request.getParameter("email");
address = request.getParameter("address");
sessionEJB.addClient(id, name, dob, email, address);
%>
<%!
double radius = 7;
double pi = 22/7;
double area()
{
return pi*radius*radius;
}
%>
<html>
<body>
Area of circle is <%= area() %>
</body>
</html
Area of circle is 147.0
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.