求1~n的和
Created At :
Count:66
Views 👀 :
题目描述
求1+2+3+…+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B:C)。
思路
class Solution {
public:
int Sum_Solution(int n) {
return (1+n)*n/2;
}
};
转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 1056615746@qq.com
Title:求1~n的和
Count:66
Author:攀登
Created At:2019-12-26, 23:12:31
Updated At:2024-06-15, 15:53:35
Url:http://jiafeimao-gjf.github.io/2019/12/26/sword-%E6%B1%821%EF%BD%9En%E7%9A%84%E5%92%8C/
Copyright: 'Attribution-non-commercial-shared in the same way 4.0' Reprint please keep the original link and author.