首页 > 其他 > 详细

求 1+2+...+n, 要求不能使用乘除法、for、while、if、else、switch、case 等关键字以及条件判断语句 (A?B:C)。

时间:2017-04-14 09:31:28      阅读:211      评论:0      收藏:0      [点我收藏+]

求 1+2+...+n,
要求不能使用乘除法、for、while、if、else、switch、case 等关键字以及条件判断语句 (A?B:C)。

#include <bits/stdc++.h>

using namespace std;

int Sum(int n)
{
    int Ret = 0;
    n == 0 || (Ret = Sum(n-1));
    return n + Ret;
}

class A{
    public:
    A()
    {
        sum += ++n;
    }
    static int sum;
    static int n;
};
int A::sum = 0;
int A::n = 0;
int main()
{
    int ans = Sum(10);
    cout << ans << endl;
    A a[10];
    cout << A::sum << endl;
 } 

 

求 1+2+...+n, 要求不能使用乘除法、for、while、if、else、switch、case 等关键字以及条件判断语句 (A?B:C)。

原文:http://www.cnblogs.com/yifi/p/6707116.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!