The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.
Find the sum of all the primes below two million.
そして、私の答えは:なぜこれが動作しないプロジェクトオイラー数10#
bool IsRishoni;
int soap = 0;
for (int i = 3; i < 2000000; i++)
{
IsRishoni = true;
for (int a = 2; (a <= Math.Sqrt(i)) && (IsRishoni); a++)
{
if (i % a == 0)
IsRishoni = false;
}
if (IsRishoni)
{
soap = i + soap;
}
}
Console.WriteLine(soap + 2);
Console.ReadLine();
?私が得た答えは1179908154 ...助けてください。
あなたはどのような答えを得るべきですか? –
彼はまだ答えを知らない(それは彼が解決しようとしている問題だ!)、私はそれを台無しにしないだろうが、答えは<100000 – inspite
@ DD59である。 –