题目描述:求1+2+3+…+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
算法思想:累加不能用循环的话,那就试试递归吧。
github地址:https://github.com/cubegao/LeetCode
题目描述:求1+2+3+…+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
算法思想:累加不能用循环的话,那就试试递归吧。
github地址:https://github.com/cubegao/LeetCode