java 简单的加法 递归 从A加到B
生活随笔
收集整理的這篇文章主要介紹了
java 简单的加法 递归 从A加到B
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
public class Main {// 設置保存和的變量static int sum = 0;public static void main(String[] args) {int begin = 1, end = 10;// 調用方法一 sum =0;sum = add(begin, end);System.out.println("===>>> 從 " + begin + " 開始加到 " + end + " 的結果是" + sum);System.out.println();// 調用方法二sum =0;addB(begin, end);System.out.println("===>>> 從 " + begin + " 開始加到 " + end + " 的結果是" + sum);System.out.println();}// 方法一(從尾處開始加)public static int add(int begin, int end) {if (begin <= end) {sum = sum + end;System.out.println("當前begin為 " + begin + " 當前end為 " + end + " 當前sum為 " + sum);add(begin, end-1);}return sum;}// 方法二(首尾同時加)public static void addB(int begin, int end) {if (begin <= end) {sum = sum + begin + end;System.out.println("當前begin為 " + begin + " 當前end為 " + end + " 當前sum為 " + sum);addB(begin + 1, end - 1);}}
}
結果:
當前begin為 1 當前end為 10 當前sum為 10
當前begin為 1 當前end為 9 當前sum為 19
當前begin為 1 當前end為 8 當前sum為 27
當前begin為 1 當前end為 7 當前sum為 34
當前begin為 1 當前end為 6 當前sum為 40
當前begin為 1 當前end為 5 當前sum為 45
當前begin為 1 當前end為 4 當前sum為 49
當前begin為 1 當前end為 3 當前sum為 52
當前begin為 1 當前end為 2 當前sum為 54
當前begin為 1 當前end為 1 當前sum為 55
===>>> 從 1 開始加到 10 的結果是55
當前begin為 1 當前end為 10 當前sum為 11
當前begin為 2 當前end為 9 當前sum為 22
當前begin為 3 當前end為 8 當前sum為 33
當前begin為 4 當前end為 7 當前sum為 44
當前begin為 5 當前end為 6 當前sum為 55
===>>> 從 1 開始加到 10 的結果是55
總結
以上是生活随笔為你收集整理的java 简单的加法 递归 从A加到B的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 二进制文件的操作
- 下一篇: LINQ能不能用系列(二)LINQ to