Board logo

標題: 遞迴函式 (一) - 計算總和 [打印本頁]

作者: tonyh    時間: 2020-2-5 11:05     標題: 遞迴函式 (一) - 計算總和

運用遞迴函式,計算從1到某個數的正整數之和。

  1. public class Ch50 {       
  2.         static int total(int n)
  3.         {
  4.                 if(n==1)    //邊界值
  5.                         return 1;
  6.                 else
  7.                     return n+total(n-1);
  8.         }
  9.         /*
  10.              total(5)
  11.              =5+total(4)
  12.              =5+4+total(3)
  13.              =5+4+3+total(2)
  14.              =5+4+3+2+total(1)
  15.              =5+4+3+2+1
  16.         */
  17.         public static void main(String[] args)
  18.         {
  19.                 System.out.println("1+2+...+5="+total(5));
  20.                 System.out.println("1+2+...+101="+total(101));
  21.                 System.out.println("1+2+...+257="+total(257));
  22.         }
  23. }
複製代碼

作者: 張宸翔    時間: 2020-2-5 11:21

  1. public class Ch01 {

  2.         static int total(int n)
  3.         {
  4.                 if(n==1)
  5.                         return n;
  6.                 else
  7.                         return n+total(n-1);
  8.         }     

  9.         public static void main(String[] args) {
  10.                 System.out.println("1+2+...+5="+total(5));
  11.                 System.out.println("1+2+...+101="+total(101));
  12.                 System.out.println("1+2+...+257="+total(257));
  13.         }
  14. }
複製代碼

作者: 黃煜城    時間: 2020-2-5 11:23

  1. public class Ch25 {
  2.         static int total(int n)
  3.         {
  4.                 if(n==1)
  5.                         return 1;
  6.                 else
  7.                         return n+total(n-1);
  8.         }
  9.                 public static void main(String[] args)
  10.         {
  11.                 System.out.println("1+2+3+4+5="+total(5));
  12.                 System.out.println("1+2+3+...+101="+total(101));
  13.                 System.out.println("1+2+3+...+456="+total(456));
  14.         }
  15. }
複製代碼

作者: 楊秉樺    時間: 2020-2-5 11:23

  1. public class Ch44
  2. {
  3.         static int total(int n)
  4.         {
  5.                 if (n==1)
  6.                         return 1;
  7.                 else
  8.                         return n+total(n-1);
  9.         }
  10.         public static void main(String[] args) {
  11.                 System.out.println("1+2+...+5="+total(5));
  12.                 System.out.println("1+2+...+101="+total(101));
  13.                 System.out.println("1+2+...+257="+total(257));
  14.         }
  15. }
複製代碼

作者: 邱翊博    時間: 2020-2-5 11:23

  1. package psycho;

  2. public class psycho {
  3.         static int total(int n)
  4.         {
  5.                 if(n==1)
  6.                                 return 1;
  7.                 else
  8.                         return n+total(n-1);
  9.         }
  10.         public static void main(String[] args) {
  11.                 System.out.println("1+2+...+5="+total(5));
  12.                 System.out.println("1+2+...+101="+total(101));
  13.                 System.out.println("1+2+...+257="+total(257));
  14.         }

  15. }
複製代碼

作者: 盧弘毅    時間: 2020-2-5 11:23

  1. public class Ch99 {
  2.         static int total(int n)
  3.         {       
  4.                 if(n==1)
  5.                         return 1;
  6.                 else
  7.                         return n+total(n-1);
  8.         }
  9.         public static void main(String[] args) {
  10.             System.out.println("1+2+......+5="+total(5));
  11.             System.out.println("1+2+......+101="+total(101));
  12.             System.out.println("1+2+......+257="+total(257));
  13.         }
  14. }
複製代碼

作者: 蘇宜貞    時間: 2020-2-5 11:23

  1. import java.util.Scanner;

  2. public class Ch01
  3. {
  4.     static int total(int n)
  5.     {
  6.             if(n==1)
  7.                     return n;
  8.             else       
  9.                     return n+total(n-1);
  10.     }
  11.         public static void main(String[] args)
  12.         {
  13.            System.out.println("1+2+3+...+5= "+total(5));
  14.            System.out.println("1+2+3+...+16= "+total(16));
  15.            System.out.println("1+2+3+...+952= "+total(952));
  16.         }
  17. }
複製代碼

作者: 沙芃妘    時間: 2020-2-5 11:24

  1. package ggg;

  2. public class Ch44 {
  3.         static int total(int n)
  4.         {
  5.                         if(n==1)
  6.                                         return 1;
  7.                         else
  8.                                 return n+total(n-1);
  9.                        
  10.         }
  11.        
  12.        
  13.         public static void main(String[] args)
  14.         {
  15.                 System.out.println("1+2+...+5="+total(5));
  16.                 System.out.println("1+2+...+101="+total(101));
  17.                 System.out.println("1+2+...+257="+total(257));
  18.         }

  19. }
複製代碼

作者: 蘇行一    時間: 2020-2-5 11:24

  1. public class Ch1
  2. {
  3.         static int total(int n)
  4.         {
  5.                 if(n==1)
  6.                         return 1;
  7.                 else
  8.                         return n+total(n-1);
  9.         }
  10.         public static void main(String[] args)
  11.         {
  12.                 System.out.println("1+2+...+5="+total(5));
  13.                 System.out.println("1+2+...+101="+total(101));
  14.                 System.out.println("1+2+...+257="+total(257));
  15.         }

  16. }
複製代碼

作者: 何蕙妘    時間: 2020-2-5 11:24

  1. import java.util.Scanner;


  2. public class Ch55 {
  3.     static int total(int x)
  4.     {
  5.             if(x==1)
  6.                     return 1;
  7.             else
  8.                     return x+total(x-1);       
  9.     }
  10.         public static void main(String[] args)
  11.         {
  12.                 System.out.println("1+2+3...+5="+total(5));
  13.                 System.out.println("1+2+3...+101="+total(101));
  14.                 System.out.println("1+2+3...+257="+total(257));
  15.         }
  16. }
複製代碼

作者: 蔡承翰    時間: 2020-2-5 11:24

  1. import java.util.Scanner;
  2. public class Ch01 {
  3.         static int total(int n){
  4.                 if(n==1)
  5.                         return 1;
  6.                 else
  7.                         return n+total(n-1);
  8.         }
  9.         public static void main(String[] args) {
  10.                 System.out.println("1+2+...+5="+total(5));
  11.                 System.out.println("1+2+...+101="+total(101));
  12.                 System.out.println("1+2+...+257="+total(257));
  13.         }
  14. }
複製代碼

作者: 劉家銘    時間: 2020-2-5 11:25

  1. package tatal;

  2. public class total {
  3.         static int total(int n)
  4.         {
  5.                 if(n==1)
  6.                         return 1;
  7.                 else
  8.                         return n+total(n-1);
  9.         }

  10.         public static void main(String[] args)
  11.         {
  12.                 System.out.println("1+2+...+5="+total(5));
  13.                 System.out.println("1+2+...+101="+total(101));
  14.                 System.out.println("1+2+...+257="+total(257));
  15.         }

  16. }
複製代碼

作者: 陳梓瑜    時間: 2020-2-5 11:26

  1. public class C44 {
  2.        static int total(int n)
  3.        {
  4.                if(n==1)
  5.                        return 1;
  6.                else
  7.                        return n+total(n-1);
  8.        }
  9.         public static void main(String[] args)
  10.         {
  11.         System.out.println("1+2+...+5="+total(5));
  12.         System.out.println("1+2++...+101="+total(101));
  13.         System.out.println("1+2+...+257="+total(257));
  14.         }

  15. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2