Search
 
SCRIPT & CODE EXAMPLE
 

CPP

c++ prime

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 :: 344. reverse string c++ 
Cpp :: lists occurrences of characters in the string c++ 
Cpp :: c++ list of pairs 
Cpp :: c++98 check if character is integer 
Cpp :: std::future 
Cpp :: balanced brackets in c++ 
Cpp :: Program to print full pyramid using 
Cpp :: maximum subarray leetcode c++ 
Cpp :: c++ - 
Cpp :: get function in cpp. 
Cpp :: C++ Vector Operation Access Elements 
Cpp :: oop in c++ have 5 
Cpp :: vector iterator in c++ 
Cpp :: std::string substr 
Cpp :: how to rotate a matrix 90 degrees clockwise 
Cpp :: A Program to check if strings are rotations of each other or not 
Cpp :: if else c++ 
Cpp :: activity selection problem 
Cpp :: cout in c++ 
Cpp :: vsearch c program stdlib 
Cpp :: print numbers after decimal point c++ 
Cpp :: graph colouring 
Cpp :: c++ solver online free 
Cpp :: point in polygon 
Cpp :: glUniform bool 
Cpp :: c++ stoi binary negative number string to decimal 
Cpp :: vowel and consonant program in c++ using if else 
Cpp :: logisch nicht 
Cpp :: c++ to c code converter online 
Cpp :: tan trigonometric function 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =