標題:
遞迴函式
[打印本頁]
作者:
tonyh
時間:
2013-5-29 19:48
標題:
遞迴函式
利用函數遞迴法, 分別計算 1加到10 以及 1加到100的總合.
public class ch30
{
public static void main(String args[])
{
System.out.println("1+2+3+...+10="+total(10));
System.out.println("1+2+3+...+100="+total(100));
}
public static int total(int n)
{
if(n<=1)
return 1;
else
return n+total(n-1);
}
}
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2