拜托各位大虾,赶帮帮忙在此谢过了~ 分析下面的JSP代码块,写出该程序的功能。
<% double i=Math.random(); %> <jsp:forward page="redi.jsp"> <jsp:param name="n" value="<%=i%>" /> </jsp:forward> <% String str=request.getParameter("n"); if(str==null) str="0"; double n=Double.parseDouble(str); %> <P>您传过来的数值是:<%=n%>