C++ Program to Check Whether a Number is Prime or Not.

C++ Program to Check Whether a Number is Prime or Not.

www.mskuthar.blogspot.com

#include <iostream.h>
int main()
{
  int n, i;
  bool isPrime = true;

  cout << "Enter a positive integer: ";
  cin >> n;

  for(i = 2; i <= n / 2; ++i)
  {
      if(n % i == 0)
      {
          isPrime = false;
          break;
      }
  }
  if (isPrime)
      cout << "This is a prime number";
  else
      cout << "This is not a prime number";

  return 0;
}


Output

Enter a positive integer: 29
This is a prime number.

Post a Comment

Previous Post Next Post