要一個一個的計算出來!
急:JSP求1到10的阶乘编程?
答案:2 悬赏:70 手机版
解决时间 2021-07-22 10:00
- 提问者网友:王者佥
- 2021-07-21 16:50
最佳答案
- 五星知识达人网友:平生事
- 2021-07-21 17:45
<%@page language="java" contentType="text/html;charset=gb2312" %>
<html>
<head>
<title>10的阶乘!</title>
</head>
<body>
<%!
int fun(int n){
if(n==1)return 1;
else return n*fun(n-1);
}
%>
<body>
<center><%out.println("10的阶乘等于"+fun(10));%></center>
</html>
<html>
<head>
<title>10的阶乘!</title>
</head>
<body>
<%!
int fun(int n){
if(n==1)return 1;
else return n*fun(n-1);
}
%>
<body>
<center><%out.println("10的阶乘等于"+fun(10));%></center>
</html>
全部回答
- 1楼网友:不想翻身的咸鱼
- 2021-07-21 18:24
这个啊,用递归就可以算出来了啊
采纳啊
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯