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

    // test13.cpp : 定义控制台应用程序的入口点。
    //

    #include "stdafx.h"
    #include<iostream>
    #include<vector>
    #include<string>
    #include<cstring>
    using namespace std;
    
    class Solution {
    public:
    	int Sum_Solution(int n) {
    		if (n == 1)
    			return 1;
    		else
    			return Sum_Solution(n - 1) + n;
    		
    	}
    };
    
    int _tmain(int argc, _TCHAR* argv[])
    {
    	Solution so;
    	int num;
    	while (cin>>num)
    	{
    		cout << "1+2+...+" <<num <<"的和是: "<< so.Sum_Solution(num) << endl;
    	}
    
    }
    

    注意:f(n)=f(n-1)+n

  • 相关阅读:
    8.10日报
    8.9日报
    8.8日报
    8.7日报
    《大道至简》读后感
    8.6日报
    8.5日报
    8.4日报
    8.3日报
    8.2日报
  • 原文地址:https://www.cnblogs.com/wdan2016/p/5924823.html
Copyright © 2011-2022 走看看