Einfache Methode um zu überprüfen ob eine Zahl Prim ist.
public static bool PrimzahlÜberprüfen(int testzahl)
{
bool primJN = true;
for (int i = 2; i <= (Math.Round(Math.Sqrt(testzahl))) ; i++)
{
if (testzahl % i == 0)
{
primJN = false;
break;
}
else
{
primJN = true;
}
}
return (primJN);
}
3 Kommentare zum Snippet