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 is prime or not

C++ For Loop: Exercise-5 with Solution

Write a program in C++ to check whether a number is prime or not.

Pictorial Presentation:

C++ Exercises: Check whether a number is prime or not

Sample Solution :-

C++ Code :

#include <iostream>
using namespace std;
int main()
{
    int num1, ctr = 0;
    cout << "\n\n Check whether a number is prime or not:\n";
	cout << "--------------------------------------------\n";
	cout << " Input a number to check prime or not: ";
	cin>> num1;	
    for (int a = 1; a <= num1; a++) 
    {
        if (num1 % a == 0) 
        {
            ctr++;
        }
    }
    if (ctr == 2) 
    {
        cout << " The entered number is a prime number. \n";
    }
    else {
        cout << " The number you entered is not a prime number. \n";
    }
}

Sample Output:

 Check whether a number is prime or not:                               
--------------------------------------------                           
 Input a number to check prime or not: 13                              
 The entered number is a prime number. 

Flowchart:

Flowchart: Check whether a number is prime or not

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a program in C++ to find the perfect numbers between 1 and 500.
Next: Write a program in C++ to find prime number within a range.

What is the difficulty level of this exercise?