C++ 中前 n 个自然数的和
在这个问题中,为了找到前 n 个自然数的和的和,我们将求出从 1 到 n 之间所有数的和,然后将它们加起来以找到和。
让我们举个例子来学习这个概念,
Input : 4 Output : 10 Explanation : Sum of first 1 natural number = 1 Sum of first 2 natural number = 1 + 2 = 3 Sum of first 3 natural number = 1 + 2 +3 = 6 Sum of first 4 natural number = 1 + 2 + 3 + 4 = 10 Sum of sum of 4 natural number = 1 + 3 + 6 + 10 = 20
示例
#include <iostream>
using namespace std;
int sumofSum(int n){
int sum = 0;
for (int i=1; i<=n; i++)
sum += i*(i+1)/2;
return sum;
}
int main(){
int n = 4;
cout<<"sum of sum first "<<n<<"natural numbers is "<<sumofSum(n);
return 0;
}输出
sum of sum first 4natural numbers is 20
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP