"sieve of eratosthenes c++" Code Answer's

You're definitely familiar with the best coding language C++ that developers use to develop their projects and they get all their queries like "sieve of eratosthenes c++" answered properly. Developers are finding an appropriate answer about sieve of eratosthenes c++ related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like sieve of eratosthenes c++. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on sieve of eratosthenes c++. 

sieve of eratosthenes c++

By Old-fashioned OkapiOld-fashioned Okapi on Apr 25, 2020
// C++ program to print all primes smaller than or equal to 
// n using Sieve of Eratosthenes 
#include <bits/stdc++.h> 
using namespace std; 

void SieveOfEratosthenes(int n) 
{ 
	// Create a boolean array "prime[0..n]" and initialize 
	// all entries it as true. A value in prime[i] will 
	// finally be false if i is Not a prime, else true. 
	bool prime[n+1]; 
	memset(prime, true, sizeof(prime)); 

	for (int p=2; p*p<=n; p++) 
	{ 
		// If prime[p] is not changed, then it is a prime 
		if (prime[p] == true) 
		{ 
			// Update all multiples of p greater than or 
			// equal to the square of it 
			// numbers which are multiple of p and are 
			// less than p^2 are already been marked. 
			for (int i=p*p; i<=n; i += p) 
				prime[i] = false; 
		} 
	} 

	// Print all prime numbers 
	for (int p=2; p<=n; p++) 
	if (prime[p]) 
		cout << p << " "; 
} 

// Driver Program to test above function 
int main() 
{ 
	int n = 30; 
	cout << "Following are the prime numbers smaller "
		<< " than or equal to " << n << endl; 
	SieveOfEratosthenes(n); 
	return 0; 
} 

Add Comment

8

prime of sieve

By Frightened FalconFrightened Falcon on May 27, 2020
//sieve of eratosthenes or prime of sieve
#include<iostream>
#include<math.h>
using namespace std;
void primeofsieve(long long int n)
{
	long long int arr[n]={};
	for(int i=2;i<=sqrt(n);i++)
	{
		for(long long int j=i*i;j<=n;j+=i)
			arr[j]=1;
	}
	for(long long int i=2;i<=n;i++)
	{
	    if(arr[i]==0)
	    	cout<<i<<" ";
	}


}
int main()
{

	#ifdef _DEBUG
	freopen("input.txt", "r", stdin);
	freopen("output.txt", "w", stdout);
    #endif
	long long int n;
	cin>>n;
	cout<<"PRIME NUMBERs ARE : ";
	primeofsieve(n);
	return 0;
}

Add Comment

6

sieve of eratosthenes c++

By tough lifetough life on Nov 09, 2020
int n;
vector<bool> is_prime(n+1, true);
is_prime[0] = is_prime[1] = false;
for (int i = 2; i <= n; i++) {
    if (is_prime[i] && (long long)i * i <= n) {
        for (int j = i * i; j <= n; j += i)
            is_prime[j] = false;
    }
}

Source: cp-algorithms.com

Add Comment

0

sieve of eratosthenes c++

By tough lifetough life on Nov 09, 2020
int n;
vector<char> is_prime(n+1, true);
is_prime[0] = is_prime[1] = false;
for (int i = 2; i <= n; i++) {
    if (is_prime[i] && (long long)i * i <= n) {
        for (int j = i * i; j <= n; j += i)
            is_prime[j] = false;
    }
}

Source: cp-algorithms.com

Add Comment

0

All those coders who are working on the C++ based application and are stuck on sieve of eratosthenes c++ can get a collection of related answers to their query. Programmers need to enter their query on sieve of eratosthenes c++ related to C++ code and they'll get their ambiguities clear immediately. On our webpage, there are tutorials about sieve of eratosthenes c++ for the programmers working on C++ code while coding their module. Coders are also allowed to rectify already present answers of sieve of eratosthenes c++ while working on the C++ language code. Developers can add up suggestions if they deem fit any other answer relating to "sieve of eratosthenes c++". Visit this developer's friendly online web community, CodeProZone, and get your queries like sieve of eratosthenes c++ resolved professionally and stay updated to the latest C++ updates. 

C++ answers related to "sieve of eratosthenes c++"

View All C++ queries

C++ queries related to "sieve of eratosthenes c++"

Browse Other Code Languages

CodeProZone