JAVA程式練習
儲存程式碼範例
2016年11月27日 星期日
使用遞迴方式計算1+2+3+4+..n的值
package
Method;
/* * 使用遞迴方式計算1+2+3+4+..n的值 */
public
class
hw7_21
{
public
static
void
main(String[] args) {
int
num=
100
; System.out.println(
"1+2+3+....+"
+num+
"的總和為"
+sum(num)); }
public
static
int
sum(
int
n){
if
(n==
0
){
return
0
; }
return
n+sum(n-
1
); } }
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言