BeginnersBook.in

Programming For Geeks

  • Home
  • All Tutorials
    • Learn C
    • Learn Python
  • Programs
    • Java Programs
    • C++ Programs
    • C Programs
  • Algorithms
    • Sorting
  • MCQ’s
    • MySQL
    • Operating System
  • WordPress
    • Genesis Pro Themes
    • Blogs
  • Tools
    • Direct Download Link Generator
    • HTML Compiler
  • How to
    • Web Examples
  • Write For Us

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

May 3, 2018 By Mr. Robot

In this example, you will learn to display all prime numbers between two numbers (entered by the user) using the function. The Prime numbers are numbers that are only divisible by themselves and 1.

Example: Print Prime Numbers (Using Function)

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
34
35
36
37
38
39
40
41
42
43
#include <iostream>
using namespace std;
 
int checkPrimeNum(int);
 
int main()
{
    int n1, n2;
    bool flag;
 
    cout << "Enter the first positive integer: ";
    cin >> n1;
    cout << "Enter the second positive integer: ";
    cin >> 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 = checkPrimeNum(i);
 
        if(flag)
            cout << i << " ";
    }
    return 0;
}
 
// user-defined function to check prime number
int checkPrimeNum(int n)
{
    bool flag = true;
 
    for(int j = 2; j <= n/2; ++j)
    {
        if (n % j == 0)
        {
            flag = false;
            break;
        }
    }
    return flag;
}
 When you run the program, the output will be following:
1
2
3
Enter the first positive integer: 5
Enter the second positive integer: 50
Prime numbers between 5 and 50 are: 7 11 13 17 19 23 29 31 37 41 43 47

Filed Under: C++ Examples

Related Posts

  • C++ Program to Emulate N Dice Roller
  • 10 Simple Star(*) Pattern Programs in C++
  • C++ Program to Display Lower Triangle of a Matrix

Recent Posts

  • Download Grand Theft Auto: Vice City Audio File | Highly Compressed
  • Grand Theft Auto: Vice City Game Download For PC | Full Setup
  • SQL SHOW DATABASES Statement
  • Direct view storage Tube (DVST) in Computer Graphics
  • CRT Color Monitor in Computer Graphics

C++ Programs

  • More 300+ Examples
  • “Hello World” Program
  • Add Two Numbers
  • Area of Circle
  • Even or Odd Number
  • Find Factorial Number
  • Simple Calculator Program
  • Swap Two Numbers
  • Check Vowel and Consonant
  • Reverse a Number
  • Fibonacci Series
  • Leap Year
  • Toggle Characters
  • Check Super Digit
  • Check Anagram Strings
  • Spy Numbers
  • Check Automorphic Number
  • Check Neon Number
  • Check Pandigital Number
  • Strong Number
  • Inverse of Matrix

More C++ Examples…

  • Star(*) Pattern Programs
  • Wave Pattern Programs
  • Sorting Algorithms

Tutorials

  • C Tutorial

Copyright © 2019 - BeginnersBook.in - All Right Reserved || Sitemap