Search
 
SCRIPT & CODE EXAMPLE
 

CPP

check prime number c++

bool prime(int a) { 
    if (a < 2)
        return false;
    for (int i = 2; i * i <= a; i++) {
        if (a % i == 0)
            return false;
    }
    return true;
}
Comment

prime number program in c c++

bool isPrime(int x = 0)
{
    /* Without extra 'count' variable */
    //! corner case: 0 and 1 aren't prime numbers
    if (x == 0 || x == 1)
        return 0;

    for (int i = 2; i <= x / 2; i++)
    {
        if (x > 2 && x % i == 0)
            return 0;
    }

    return 1;
}
Comment

prime number in c++

#include<iostream>
using namespace std;
 
int main()
{
	int n;
	bool c=1;
	cin >> n;
	if (n <= 1)
	{
		cout << "NO
";
	}
	else
	{
		for (int i = 2; i < n; i++)
		{
			if (n % i == 0)
			{
				c=0;
				break;
			}
		}
		if (!c)
			cout << "NO
";
		else
			cout << "YES
";
	}
	return 0;
}
Comment

c++ program to find prime number using function

#include<iostream>
using namespace std;
bool isPrimrNumber(int number){
	bool isPrimeFlag=true;
	for(int i=2;i<number;i++){
	if(number%i==0){
		isPrimeFlag=false;
		break;
	}
}
		return isPrimeFlag;
}
int main()
{
	int number;
	cout<<"Please enter your number";
	cin>>number;
		bool isPrimeFlag=isPrimeNumber(number)
	if(isPrimeFlag)
	{
		cout<<"prime Number";
	}
	else
	{
		cout<<"not prime number";
	}
}
Comment

prime number c++


# Prime number:

n = int(input("Please enter your input number: "))
if n>1:
    for i in range(2,n):
        if n%i == 0:
            print("%d is a Not Prime."%n)
            break
    else:
        print("%d is a Prime."%n)
else:
    print("%d is a Not Prime."%n)
    
# Use to Definition Function:

'''
def Prime_number_chcek(n):
    if n>1:
        for i in range(2,n):
            if n%i == 0:
                return ("%d is a Not Prime."%n)
        return ("%d is a Prime."%n)
    return ("%d is a Not Prime."%n)

# Main Driver:
if __name__=="__main__":
    n = int(input("Enter your input number: "))
    print(Prime_number_chcek(n))
'''
Comment

find prime number c++

#include <math.h>
// time: O(sqrt(n)) ..  space: O(1)
bool isPrime(int n) {
  if (n < 2) return false;
  int iter = 2;
  while(iter <= sqrt(n)) {
  	if (n % iter == 0) return false;
    iter++;
  }
  return true;
}
Comment

prime number c++

bool prime(int x) {
	if (x == 2 || x == 3) return true;
	if (x == 1 || x % 2 == 0 || x % 3 == 0) return false;
	int k = -1;
	while (k<=int(sqrt(x))) {
      	k+=6;
		if (x % k == 0 || x % (k+2) == 0) break;
	}
	return k>int(sqrt(x));
}
Comment

prime number c++

template<class T> bool isPrime(T n) 
{ 
	T i;
  	if(i<2) return false;
	for(i = 2; i * i <= n; i++) { 
    	if(n % i == 0)  return false; 
    } 
	return true; 
}
Comment

C++ prime number

// A optimized school method based C++ program to check
// if a number is prime
#include <bits/stdc++.h>
using namespace std;
  
bool isPrime(int n)
{
    // Corner cases
    if (n <= 1)
        return false;
    if (n <= 3)
        return true;
  
    // This is checked so that we can skip
    // middle five numbers in below loop
    if (n % 2 == 0 || n % 3 == 0)
        return false;
  
    for (int i = 5; i * i <= n; i = i + 6)
        if (n % i == 0 || n % (i + 2) == 0)
            return false;
  
    return true;
}
  
// Driver Program to test above function
int main()
{
    isPrime(11) ? cout << " true
" : cout << " false
";
    isPrime(15) ? cout << " true
" : cout << " false
";
    return 0;
}
Comment

prime number program c++

#include<iostream>
#include<cmath>
using namespace std;
int main(){
    int n;
    cin>>n;
    for(int i=2;i<sqrt(n)+1;i++){
        if(n%i==0){
            cout<<"number is not a prime";
            return 0;
        }
    }
    cout<<"number is a prime";
    return 0;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: how to know in flutter if signin with user completed in firebase 
Cpp :: how to delete a certain amount of numbers of the same value in multiset c++ 
Cpp :: locate specific string letters c++ 
Cpp :: c++ type of a variable 
Cpp :: how to make a hello world program in c++ 
Cpp :: how to print fixed places after decimal point in c++ 
Cpp :: how to get last element of set in c++ 
Cpp :: removing a character from a string in c++ 
Cpp :: c++ file exists 
Cpp :: c++ print number not in scientific notation 
Cpp :: how to get a letter from the users string in c++ 
Cpp :: minimum spanning trees c++ 
Cpp :: combination code c++ 
Cpp :: malloc in c++ 
Cpp :: elixir update map 
Cpp :: c++ length of char* 
Cpp :: how to add colored text in c++ 
Cpp :: factorial in c++ 
Cpp :: c++ construnctor 
Cpp :: c++ function as param 
Cpp :: max of a vector c++ 
Cpp :: opencv c++ image write 
Cpp :: sieve cpp 
Cpp :: overload stream extract cpp 
Cpp :: c++ program transpose of matrix 
Cpp :: sort a 2d vector c++ stl 
Cpp :: upcasting in c++ 
Cpp :: c++ string to char array 
Cpp :: c++ output 
Cpp :: c++ modulo positive 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =