不能用循环的1到n之和 知识点: 题目描述 求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。 解题思路 不让用循环用递归即可。 代码 这里