c 2b 2b find prime numbers

Solutions on MaxInterview for c 2b 2b find prime numbers by the best coders in the world

showing results for - "c 2b 2b find prime numbers"
Matteo
01 Jun 2018
1#include <iostream>
2using namespace std;
3
4int main()
5{
6  int n, i;
7  bool isPrime = true;
8
9  cout << "Enter a positive integer: ";
10  cin >> n;
11
12  for(i = 2; i <= n / 2; ++i)
13  {
14      if(n % i == 0)
15      {
16          isPrime = false;
17          break;
18      }
19  }
20  if (isPrime)
21      cout << "This is a prime number";
22  else
23      cout << "This is not a prime number";
24
25  return 0;
26}
Lyna
24 Oct 2017
1#include <iostream>  
2using namespace std;  
3int main()  
4{  
5  int n, i, m=0, flag=0;  
6  cout << "Enter the Number to check Prime: ";  
7  cin >> n;  
8  m=n/2;  
9  for(i = 2; i <= m; i++)  
10  {  
11      if(n % i == 0)  
12      {  
13          cout<<"Number is not Prime."<<endl;  
14          flag=1;  
15          break;  
16      }  
17  }  
18  if (flag==0)  
19      cout << "Number is Prime."<<endl;  
20  return 0;  
21}  
Sophie
14 Jun 2018
1#include <iostream>
2using namespace std;
3
4int main() {
5    int i, n;
6    bool isPrime = true;
7
8    cout << "Enter a positive integer: ";
9    cin >> n;
10
11    // 0 and 1 are not prime numbers
12    if (n == 0 || n == 1) {
13        isPrime = false;
14    }
15    else {
16        for (i = 2; i <= n / 2; ++i) {
17            if (n % i == 0) {
18                isPrime = false;
19                break;
20            }
21        }
22    }
23    if (isPrime)
24        cout << n << " is a prime number";
25    else
26        cout << n << " is not a prime number";
27
28    return 0;
29}
30
Paloma
18 Jul 2018
1// 6k+-1 optimisation
2bool is_prime6(int num) {
3  int i;
4  if (num == 1)
5    return false;
6  if (num <= 3)
7    return true;
8  if (num % 2 == 0 || num % 3 == 0)
9    return false;
10  if (num < 25)
11    return true;
12  for (i = 5; i * i <= num; i += 6)
13    if (num % i == 0 || num % (i + 2) == 0)
14      return false;
15  return true;
16}
queries leading to this page
c 2b 2b find if primeprime number program in cppfastest way to check if a number is prime cppmost efficient way to find prime numbers c 2b 2bc 2b 2b find primescpp code to determine a number is primeprime number program in c 2b 2bc 2b 2b primeprime numbers in c 2b 2b for all conditionfinding prime numbers in c 2b 2ball prime numbers up to that number c 2b 2balgorithm in cpp to find prime numbercode to check a number is prime or not in c 2b 2bprime number algorithm c 2b 2bc 2b 2b check if string is primecheck prime in c 2b 2b using funcitonc 2b 2b find if any number is primecheck if a number is prime or not cppcpp check prime numbersprime numbers formula c 2b 2bnumber of prime numbers c 2b 2bprime numbers code in c 2b 2bc 2b 2b program to find prime numberc 2b 2b program prime numbersc 2b 2b prime number functionprime in cpphow to find co prime number c 2b 2bprime non prime numbers c 2b 2bprime numbers c 2b 2bc 2b 2b generate prime numbers in compile timec 2b 2b how to calc primegenerate n prime numbers in c 2b 2bcheck if number is prime in cppproblems of prime numbers c 2b 2bbest way to check prime cppprogram to find prime number c 2b 2bprime number program using c 2b 2bhow to get prime numbers in c 2b 2bhow to find prime numbers programm in c 2b 2bidentigy prime number cppfind prime numer c 2b 2b loopsisprime c 2b 2bprime numbers in cppprime number function in c 2b 2bhow to find the prime numbers in cppc 2b 2b how to find out if a number is prime or notgrt prime numbers in c 2b 2bprime number c 2b 2b program using functionprime number using function in cppc 2b 2b check prime numberhow to get prime numbers chow to get all prime numbers c 2b 2bprint prime numbers with c 2b 2bcode to check a number is prime or not c 2b 2bhow to check if number is prime or not in c 2b 2bprime number function in cppprint prime number program in c 2b 2bprime numbers cpp code program to check prime number in cppcpp program to check prime numberprime number or not in c 2b 2bhow to find all prime number in c 2b 2bhow to check if a number is prime in c 2b 2bc 2b 2b program for primeswho to determine prime numbers in c 2b 2b3 write a program that prompts the user to input a positive integer it should then output a message indicating whether the number is a prime number examples of prime numbers are 3a 2 2c 3 2c 5 2c 7 2c 11 2c 15 2c 17 how to check for prime numbers in c 2b 2bprime number c 2b 2b checkhow to get prime number in c 2b 2bprime numbers algorithm in c 2b 2bfind prime numbers from 10 numbers c 2b 2bget all prime numbers in cppc 2b 2b function to check if primec 2b 2b check is number is primecpp prime number functioncheck prime number function in cppprime numbers c 2b 2bgenerate prime numbers c 2b 2bfinding prime numbers cppfind prime numbers cppis prime cppalgorithm for prime number in c 2b 2bprime no code cppc 2b 2b for prime numbersprime numbers cpp programprime number logic in c 2b 2bgenerate prime numbers in c 2b 2bhow to find prime number in c 2b 2bhow to find the next prime number in c 2b 2bc 2b 2b prime number programhow to find out if a number is prime in c 2b 2bcheck prime for large numbers c 2b 2bhow to check if a number is prime cppcpp program for prime numberhow to find prime number in c 2b 2bprime numbers check in cppprime numbers c 2b 2b programprogram in c 2b 2b to find prime numberc 2b 2b finding prime numbers with find algorithmcheck prime number cppc 2b 2b code to check if a number is primec 2b 2b program to check prime number using classhow to check that a number is prime in c 2b 2bhow to check whether a number is prime or not cppfind prime factors of a number c 2b 2bhow to print primes numbers in c 2b 2bcheck prime c 2b 2bc 2b 2b write prime numbershow to display prime numbers in c 2b 2b programcpp math isprimeprogram to find a number is prime or not in c 2b 2bfastest way to find prime number in c 2b 2bprime numbers program c 2b 2bcode for checking prime number in c 2b 2bprime number code in c 2b 2bcode in c 2b 2b to check prime numberfind all prime numbers till a number c 2b 2bbuilt in function of prime number in c 2b 2bc 2b 2b find prime numbershow can find the prime number in c 2b 2bprime numbers in c 2b 2bhow to check prime number in cppc 2b 2b amount of primes a number hasis prime math c 2b 2bcheck no is prime or not in c 2b 2bprime number function c 2b 2bwrite prime number code in c 2b 2bprime number cppfunction to check if number is prime c 2b 2ball prime numbers c 2b 2bfind prime number cppcpp prime nosprime nuber programme c 2b 2bhow to find prime number in efficient way in cppprint all prime numbers in c 2b 2bgenerate 100 digit prime number with c 2b 2bc 2b 2b prime or notcount prime numbers in c 2b 2bcpp program to see if a number is prime or nothow to calculate prime numbers c 2b 2bhow to check if a no is prime or not c 2b 2bfunction for prime numbers in c 2b 2bdeteriming if a number is prime or not c 2b 2ball prime numbers program in c 2b 2bprime nubers in cppcode to check prime number c 2b 2bfunction for checking a prime number in c 2b 2bcheck prime cpp gfggiven number is prime or not cppprime cppprint prime number c 2b 2bprogram for prime number in cppfunction prime number c 2b 2bprime numbers code in cppin c 2b 2b prime numbers long longc 2b 2b check if a number is primefind 100 prime numbers in c 2b 2b forfind primes of a number c 2b 2bfind all prime numbers in a number c 2b 2bcheck prime number in cpphow to detect prime number in c 2b 2bc 2b 2b code to print primesaiyan prime nmbr c 2b 2bcpp efficient program to find if a number is prime or otgalgorithm to find prime numbers c 2b 2bfind all prime numbers c 2b 2bto check a number is prime or not in cppc 2b 2b code for prime numberto find a number is prime or not in cpp in o 281 29find prime numbers in c 2b 2b untill nprime number program in c 2b 2b using for loopprime program in cppcode in c 2b 2b to find given number is prime or notprime no in c 2b 2bhow to print prime numbers c 2b 2bprime numbers c 2b 2b functionprime number in cppfind prime numbers in c 2b 2bprime number finder c 2b 2bprogram to find prime number in c 2b 2bcpp find if number is primec 2b 2b program to find whether a number is prime or notcheck prime function in c 2b 2bcheck prime c 2b 2b stlprime cpp programcpp primefind prime c 2b 2bc 2b 2b code prime numberprime number print c 2b 2bfind a number is prime or not in cppcheck prime cpphow to check if number is prime in cppcheck prime number c 2b 2bhow to find prime numbers in c 2b 2bcheck prime number in c 2b 2b using sievehow to see if the number is prime in c 2b 2bfunction to check prime number in c 2b 2bprime numbers finder in c 2b 2bprime in c 2b 2bchecking prime quickly in cpphow to check if list of numbers is prime or not in c 2b 2bhow to determine prime numbers in c 2b 2b 3fprime number program in c 2b 2b using functionc 2b 2b 28prime numbers 29 an integer is said to be prime if it e2 80 99s divisible by only 1 and itself for example 2c 2 2c 3 2c 5 and 7 are prime 2c but 4 2c 6 2c 8 and 9 are not write a function that determines whether a given number is prime printing all prime numbers in c 2b 2bprime checker cpphow to find prime number using c 2b 2bcheck if a number is prime cpphow to find a prime number c 2b 2bfind prime number in c 2b 2bcode to check if a number is a prime number in cpphow to calculate if a number is prime in cppis prime c 2b 2bformula to find prime number in c 2b 2bprime checker code in c 2b 2bprime number c 2b 2b implementationprime number c 2b 2bc 2b 2b code print even numbersfind prime numbers c 2b 2bcheck if given number is prime or not c 2b 2bprime numbers cppprime number code c 2b 2bhow to check if a number is prime c 2b 2bhow to find prime numbers in cppprime number code in cppc 2b 2b primenumberc 2b 2b program for prime numberscalculate prime numbers c 2b 2bfunction to check if a number is prime in c 2b 2bprint all the possible prime numbers in number c 2b 2bbuilt in prime number function in c 2b 2bprime number print in c 2b 2bprogram to find prime numbers in c 2b 2bhow to find prime numbers in c 2b 2b using functionprint prime numbers in cppinbuilt function to check prime number in c 2b 2bcheck if prime cppcode to check prime number in c 2b 2bhow to find prime numbera in c 2b 2bprime checking function in c 2b 2bfinding prime number in c 2b 2bchecking for prime numbers in cpphow find prime number c 2b 2bfunction to get prime numbers c 2b 2bc 2b 2b program prime numberprogram to find prime number for c 2b 2bhow to detect prime number cppfind the prime number in c 2b 2bcount the number of prime numbers in c 2b 2b get prime numbers in c 2b 2bhow to check prime number cpphow to find out if a numbe ris prime in c 2b 2bc 2b 2b code to detect the number is primecpp logic for prime numbercpp is primeprime number in c 2b 2b using functionhow to print prime numbers in c 2b 2bget prime numbers c 2b 2bprint n prime numbers in c 2b 2bfunction to check prime number c 2b 2bc 2b 2b 3a generate 100 digit prime numberget primes number c 2b 2bwrite c 2b 2b program to find prime numberhow to check if number is prime in c 2b 2bc 2b 2b determine if primecheck if numbe is prime c 2b 2bc 2b 2b code to find prime numbershow to find a prime number in c 2b 2bprogram in cpp to find prime numberc 2b 2b program to print prime numberscheck if number is prime cppprime numbers or not in c 2b 2bprogram to print prime numbers cpphow to show prime number and non prime number in c 2b 2bprint all the prime numbers in c 2b 2bshortcut to find if a number is prime in c 2b 2bprime set number c 2b 2bprime numbers or not in cppprime check function in cppprime number cpp programprime numbers c 2b 2b gfgto find prime num in c 2b 2bhow to check for a number to beprime or not in c 2b 2bdetermine if number is prime c 2b 2bfind a prime number in c 2b 2bfind prime in cppfind prime number from array in c 2b 2bc 2b 2b prime checkprogram to find a prime number c 2b 2bcheck if a number is prime number c 2b 2bhow to pre compute prime numbers in c 2b 2bget prime number in c 2b 2bcount prime number c 2b 2bget primes c 2b 2bfind prime number in a given range in cppif a number is prime c 2b 2bcheck if a number entered is prime number or not c 2b 2b using classcode for prime number in cppc 2b 2b stl prime numberprime numbers c 2b 2bc 2b 2b check ir prime numbercode to find prime number in c 2b 2b print all prime numbers cppc 2b 2b program to generate prime numberscheck prime no for large value in cppfind prime number c 2b 2bdetect prime c 2b 2bprint 1 if prime and 0 if not prime in c 2b 2bprint prime number in cppprint prime number in c 2b 2bcpp check if primefind primes in c 2b 2bgiven number is prime cppprime number c 2b 2b logiccheck for prime number using stl c 2b 2bc 2b 2b efficient way to find primeprime number find in c 2b 2ba function to check prime number in c 2b 2bprime number check in cpphow can i find prime numbers in c 2b 2bprime check cppcpp to check primeprimal numbers in c 2b 2bprime nuber in cppc 2b 2b how to find prime numbersoptimal way to find prime number c 2b 2bprime numbers using cppc 2b 2b get prime numberscpp program to print prime number or notwap to check prime number c 2b 2bformula for prime numbers in c 2b 2bcpp code to find prime numberhow to find if a number is prime number c 2b 2bc 2b 2b prime numbershow to check for a number is prime in c 2b 2bhow to find number is prime or not in c 2b 2bfinding prime numbers c 2b 2bprime numbers of a number in c 2b 2bhow to find a prime nuber in c 2b 2bchecking prime numbers in c 2b 2bhow to tell if a number is prime in c 2b 2bcheck if prime c 2b 2bprime number in c 2b 2b codeprogram to find prime number in cppc 2b 2b find number is primeprime numbers c 2b 2b 3bprogram to find prime number for c 2b 2b in simple codehow to find all the prime numbers under a number in c 2b 2bhow to check if list of numbes is prime or not in c 2b 2bprint prime numbers in c 2b 2bprime number c 2b 2b functionverify if long is a prime c 2b 2bcheck if number is prime c 2b 2bc 2b 2b prime number function codec 2b 2b code to determine if a number is primewrite a program which take a number as input from the user and tells whether the number is prime no or not in c 2b 2bprime numbers program in cppc 2b 2b prime number checkhow to find prime numbers until a number c 2b 2balgorithm to check prime number c 2b 2bto find prime number in c 2b 2bc 2b 2b prime number findercheck if a numbers is prime numbers c 2b 2bprogram for the prime number in c 2b 2bswitch case prime even odd 2cprime c 2b 2bc 2b 2b how to check if a number is primeprime or not cppcalculate prime numbers in c 2b 2bc 2b 2b prime numbercheck if a number is prime in cppcheck if number is prime or not in c 2b 2bcpp prime numberprime number formula c 2b 2bprime or not in cppcheck if int is prime c 2b 2bhow to check if a number is a prime number in cpphow to find prime numbers c 2b 2bin c 2b 2b prime numberscheck if number is prime or notn c 2b 2bis prime number cppfind primes c 2b 2bhow to find prime number in efficient way in c 2b 2bwrite a program in c 2fc 2b 2b to check whether a number is a prime number or not using the functionprime c 2b 2bfind if number is prime or not in c 2b 2bprime number in c 2b 2bhow to check if no is prime or not cpphow to find prime num in cppprime numbers using c 2b 2bcheck prime number in c 2b 2b best solutioncpp efficient program to find if a number is prime ornotgc 2b 2b finding prime numbersprime numbers algorithm c 2b 2blogic for prime number c 2b 2bdigit prime number c 2b 2bprine number cppfind prime number in cppc 2b 2b find prime numbers