<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>无标题文档</title>
</head><body><%!int para=3;
int fib(int n)
{ int result;
if(n==0) result=0;
if(n==1) result=1;
result=fib(n-1)+fib(n-2);
return result;
}
%>
the result of the fib(20)=<%=fib(20)%>
</body>
</html>