码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-剑指64-OK

时间:2021-02-01 12:39:49      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:ble   ems   class   sum   problems   https   turn   pre   ret   

// language c
// 剑指64
// https://leetcode-cn.com/problems/qiu-12n-lcof/


int sumNums(int n){
    int ans = n;
    (n) &&(ans +=sumNums(n-1));
	return ans;
}

leetcode-剑指64-OK

标签:ble   ems   class   sum   problems   https   turn   pre   ret   

原文地址:https://www.cnblogs.com/gallien/p/14351655.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!