×

C++ Prime number program

In this lesson, you'll learn how to verify whether a given number is a prime number or not in C++, and you'll obtain code to do it.

What is the definition of a prime number ? 

A prime number is any number that is bigger than one and should be divided by one or divided by itself. Since prime numbers could not be divided by any other integer, so only the same number or 1 should be used to do so.

For Example : 2, 3, 5, 7 and so on.

You might be wondering why the number 2 is considered a prime number. Since 2 seems to be the only prime number that is also even, it is an exception. Only two integers are prime and successive natural numbers! In addition, the number 2 is the smallest prime number.

Checking for a prime number :

If a number n, is divisible by any integer between 2 to one less than (n-1), it is not a prime number, otherwise it is.

Example :

#include <iostream>
using namespace std;


int main()
{
    /* Defining and initializing a variable */   
    int num, j, k = 0;
    
    /* Getting the input from the user */
    cout << "Enter a number : "; cin>>num;
    
    for (j = 1; j <= num; j++)
    {
        if (num % j == 0)
        {
           k++;
        }
    }
    if (k == 2)
    {
       cout << "It’s a Prime number" << endl;
    }
    else
    {
         cout << "It’s not a Prime number" << endl; 
    }
    return 0;    
}

Output :

Enter a number : 5
It’s a Prime number 

Explanation :

To begin, you must contain the iostream header file using the "include" directive followed by a #, which indicates that the header file must be processed before compilation, hence the name pre-processor directive. You may now utilize the namespace statement within a program to resolve naming conflicts.

Next, define three integer type variables, 'num', j and 'k,' and set k to 0. Using the cout""; command, inform the user to input any natural number num. The 'cin' command takes a value from the input device (in this case, the keyboard) and stores it in the variable num. You must now create a for - loop that will count from 1 to num. And within this loop, we verify whether dividing num by j yields a result of 0 or not. If the condition is met, the value of c is increased.

Now, if k == 2, it prints "It’s a Prime number" and if k is not equal to 2, it publishes "It’s not a Prime number". Finally, we get the required output.

Example 2 :

#include <iostream>
using namespace std;
int main()
{
int low, high, fl, temp;
cout << "Please enter ant two numbers to find the prime numbers between those numbers : "<< endl;
cin >> low >> high;


if ( low > high) {    //the numbers will be swapped when the low number will be greater than the high number. //
temp = low;
low = high;
high = temp;
}
cout << "The Prime numbers between " << low << " and " << high << " are : "<< endl;


while ( low < high)
{
fl = 0;
for ( int x = 2; x <= low/2; ++x)
{
if ( low % x == 0)
{
fl = 1;
break;
}
}
if ( fl == 0)
cout << low << " ";
++low;
}
return 0;
}

Output :

Please enter ant two numbers to find the prime numbers between those numbers :
11
20 
The Prime numbers between 11 and 20 are : 
11 13 17 19

Explanation :

We used integers as a low number, a high number, a temp variable, and a flag fl in the code above. We begin by taking two integers as input, one of which is low and the other high. If the low number is greater than the high number, the numbers will be switched using a temp variable before proceeding with the function. Now, the while loop will continue until low is less than high, and the for loop will continue to calculate prime numbers between them, resulting in printing all the prime number between low and high.

Summary :

Prime number reasoning may be applied in any computer language, not only C++. This reasoning may be used to locate a group of prime numbers according to criteria in seconds without spending any time in computer programming, from a small collection of numbers to a large number of numbers.


Related Topics

Memset in C++

Memset () is a function in the C++ programming language that fills memory blocks. The value of "ch" is first converted to an unsigned character. In this case, "ch" denotes the...

3 minutes read.

Ascending order in C++

In C++, the term "ascending order" refers to a specific order in which a list of elements is arranged. When a list of elements is arranged in ascending order, the...

3 minutes read.

Include Guards in C++

In C++ programming, we frequently utilize a class more than once, so it is necessary to create a header file and include it in the main program. Now, occasionally a...

3 minutes read.

C++ operator

In this article, we will discuss about the operators in C++ with their types and examples. An operator is specially a symbol that tells compiler to perform specific manipulation. C++ contains...

5 minutes read.

Unary Operators in C++

Unary operators in C++ Unary operator: is operations that function to produce a new value on a single operand. a) unary minus: A minus operator modifies the argument's symbol. A positive number...

3 minutes read.

C++ Functions

In other programming languages, a function is referred to as a process or a subroutine. We can design functions to execute any task. A function can be used repeatedly. It...

5 minutes read.

While Loop Examples in C++

While Loop A while loop repeats all code in its body, also known as a while statement, as long as a specific condition is satisfied. The loop ends if or when...

4 minutes read.

C++ Program: Matrix Multiplication

Matrix Multiplication in C++ What is a Matrix? A matrix is a set of numbers in the form of rows and columns forming a rectangular array. It includes numbers, which are often...

4 minutes read.

Object in C++

In this article, we will learn about Object in C++. In short, an object is a stateful entity with behaviour. Data is referred to as state, and functionality is referred to...

3 minutes read.

C++ Call by Value

In this article, we will discuss C++ Call by Value with their syntax, examples, use cases, advantages, and disadvantages. C++ Function A function is a set of statements that executes a task....

5 minutes read.

C++ Identifier

In a program, C++ identifiers relate to the names of variables, functions, arrays, and other user-defined data types that the programmer has developed. They are a prerequisite for learning any...

4 minutes read.

Default arguments in C++

Arguments in a function are defined as the values supplied when the function is called. The source is the values supplied, and the destination is the receiving function. Let us...

3 minutes read.

Constructor Overloading in C++

A Constructor is a class member function that is used to initialize the class's objects. Constructors have no return type and are called automatically when an object is formed. Constructor Characteristics Constructors...

3 minutes read.

sort() function in C++

This tutorial covers the various built-in sort functions found in the C++ algorithm’s library.  What Does C++ Sort Mean? The concept of sorting in C++ entails rearranging an array's elements in a...

3 minutes read.

Array program in C++

What is an Array? An array is a set of identically typed elements that are organized into contiguous memory locations and each element can be independently accessed using an index. We can...

16 minutes read.

fscanf() Function in the C++

In the C++ programming language, the fscanf() method can be used to read data from a file stream. Syntax: The syntax for the fscanf() function in the C++ programming language is as...

3 minutes read.

INT_MAX and INT_MIN in C/C++

In competitive programming, assigning a variable that maximum or minimum value a data type can carry is frequently necessary. Still, it might be challenging to recall such a significant, exact...

3 minutes read.

Decltype type Specifier in C++

The primary use of C++ decltype is to inspect the declaration type of an entity in an expression. The auto keyword can declare a particular type of variable, whereas the...

4 minutes read.

Virtual base class in C++

Consider in a C++ program, there are 4 classes named class A, class B, class C, and class D. If class B and class c inherit properties from class A....

3 minutes read.

C++ Constructor

Constructor is a specific method in C ++ that is automatically called when an object is created. Typically, it is used to set the data members of a new object....

4 minutes read.