可能重複:
Which is the fastest algorithm to find prime numbers?打印素數小於100
有沒有什麼辦法,使這更優化..
#include <vector>
int main()
{
std::vector<int> primes;
primes.push_back(2);
for(int i=3; i < 100; i++)
{
bool prime=true;
for(int j=0;j<primes.size() && primes[j]*primes[j] <= i;j++)
{
if(i % primes[j] == 0)
{
prime=false;
break;
}
}
if(prime)
{
primes.push_back(i);
cout << i << " ";
}
}
return 0;
}
你可以你的循環i ++在部分變爲I + = 2,因爲我們知道所有的連號都不會是首要反正 – Akron
你需要添加作業標籤? –
已經有很多關於此主題的SO問題。 – mydogisbox