首页
科技
登录
6mi
u
盘
搜
搜 索
科技
[剑指offer] 47. 求1+2+3+...+n
[剑指offer] 47. 求1+2+3+...+n
it
2025-11-07
3
题目描述
求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
class
Solution {
public
:
int
Sum_Solution(
int
n) {
if
(n ==
0
)
return
0
;
return
n + Sum_Solution(n -
1
); } };
转载于:https://www.cnblogs.com/ruoh3kou/p/10172487.html
转载请注明原文地址: https://win8.8miu.com/read-1552830.html
最新回复
(
0
)