Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Display the n terms of even natural number and their sum

C++ For Loop: Exercise-21 with Solution

Write a program in C++ to display the n terms of even natural number and their sum.

Pictorial Presentation:

C++ Exercises: Display the n terms of even natural number and their sum

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;

int main()
{
    int i, n, sum = 0;

    cout << "\n\n Display n terms of even natural number and their sum:\n";
    cout << "---------------------------------------------------------\n";
    cout << " Input number of terms: ";
    cin >> n;
    cout << "\n The even numbers are: ";
    for (i = 1; i <= n; i++) 
    {
        cout << 2 * i << " ";
        sum += 2 * i ;
    }
    cout << "\n The Sum of even Natural Numbers upto " << n << " terms: " << sum << endl;
}

Sample Output:

Display n terms of even natural number and their sum:                 
---------------------------------------------------------              
 Input number of terms: 5                                              
 The even numbers are: 2 4 6 8 10                                        
 The Sum of even Natural Numbers upto 5 terms: 30  

Flowchart:

Flowchart: Display the n terms of even natural number and their sum

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to display the n terms of odd natural number and their sum.
Next: Write a program in C++ to display the n terms of harmonic series and their sum.

What is the difficulty level of this exercise?