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: Check Whether a Number can be Express as Sum of Two Prime Numbers

C++ For Loop: Exercise-33 with Solution

Write a program in C++ to Check Whether a Number can be Express as Sum of Two Prime Numbers.

Pictorial Presentation:

C++ Exercises: Check Whether a Number can be Express as Sum of Two Prime Numbers

Sample Solution:-

C++ Code :

#include <iostream>
using namespace std;

int main()
{
    int n, i, flg1 = 1, flg2 = 1, flg3 = 0, j;
    float sum = 0;
    cout << "\n\n Check Whether a Number can be Express as Sum of Two Prime Numbers:\n";
    cout << "------------------------------------------------------------------------\n";
    cout << " Input  a positive integer: ";
    cin >> n;
    for (i = 2; i <= n / 2; i++) 
    {
        /*---------- check for prime---------------*/
        flg1 = 1;
        flg2 = 1;
        for (j = 2; j < i; j++) 
        {
            if (i % j == 0) 
            {
                flg1 = 0;
                j = i;
            }
        }
        for (j = 2; j < n - i; j++) 
        {
            if ((n - i) % j == 0) 
            {
                flg2 = 0;
                j = n - i;
            }
        }
        if (flg1 == 1 && flg2 == 1) 
        {
            cout << n << " = " << i << " + " << n - i << endl;
            flg3 = 1;
        }
    }
    if (flg3 == 0) 
    {
        cout << n << " can not be expressed as sum of two prime numbers." << endl;
    }
}

Sample Output:

 Check Whether a Number can be Express as Sum of Two Prime Numbers:    
------------------------------------------------------------------------                                                                      
 Input  a positive integer: 20                                         
20 = 3 + 17                                                            
20 = 7 + 13   

Flowchart:

Flowchart: Check Whether a Number can be Express as Sum of Two Prime Numbers

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to find the Sum of GP series.
Next: Write a program in C++ to find the length of a string without using the library function.

What is the difficulty level of this exercise?