C++ Program to Display Prime Numbers Between Two Intervals Using Functions

Source Code:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <iostream>
using namespace std;
int checkPrimeNumber(int);
int main()
{
    int n1, n2;
    bool flag;
    cout << "Enter two positive integers: ";
    cin >> n1 >> n2;
    cout << "Prime numbers between " << n1 << " and " << n2 << " are: ";
    for(int i = n1+1; i < n2; ++i)
    {
        // If i is a prime number, flag will be equal to 1
        flag = checkPrimeNumber(i);
        if(flag)
            cout << i << " ";
    }
    return 0;
}
// user-defined function to check prime number
int checkPrimeNumber(int n)
{
    bool flag = true;
    for(int j = 2; j <= n/2; ++j)
    {
        if (n%j == 0)
        {
            flag = false;
            break;
        }
    }
    return flag;
}

Post a Comment

 
Top