一 . 直接解题吧
芽儿呦,突然觉得,我不说!!
该题目用到递归,但是却不存在if等判断语句。
class Solution { public int Sum_Solution(int n) { // write code here if(n == 1) { return 1; } else { return n + Sum_Solution(n - 1); } } }
剑指Offer的学习笔记(C#篇)-- 求1+2+3+...+n
原文:https://www.cnblogs.com/WeiMLing/p/10964663.html