Answers for "Write a CPP program to calculate sum of first N natural numbers"

C++
1

c++ sum of all numbers up to a number

// Method 1: Mathematical -> Sum up numbers from 1 to n 
int sum(int n){
	return (n * (n+1)) / 2;
}

// Method 2: Using a for-loop -> Sum up numbers from 1 to n 
int sum(int n){
	int tempSum = 0; 
  	for (int i = n; i > 0; i--){
     	tempSum += i;  
    }
  	return tempSum; 
}

// Method 3: Using recursion -> Sum up numbers from 1 to n 
int sum(int n){
	return n > 0 ? n + sum(n-1) : 0; 
}
Posted by: Guest on July-07-2020
0

Write a CPP program to calculate sum of first N natural numbers

#include <iostream>

using namespace std;

int main(){
	int N,i,sum=0;
	cin>>N;
     for(i=0;i<=N;)
     {
         sum=sum+N;
        N--;
     }
     cout<<sum;
}
Posted by: Guest on August-09-2021

Code answers related to "Write a CPP program to calculate sum of first N natural numbers"

Browse Popular Code Answers by Language