Jump to content
Qries Qries Qries Qries Qries Qries

Recommended Posts

  • 2 months later...
  • 4 years later...
  • 2 months later...

Schreib dir doch einfach ein Programm, welches dir die Primzahlen berechnet. Wozu gibt es Computer?

 

In java wäre ein einfacher greedy Ansatz etwa so

 

 

public static boolean [] prim(zahl){

 

boolean [] prim=new boolean[zahl-1];

for(int i=0; i

prim=true;

}

for(int i=1; i

for(int k=2; k*k

if((i+2)%k==0) prim=false;

}

}

return prim;

}

Link to comment
Share on other sites

Schreib dir doch einfach ein Programm, welches dir die Primzahlen berechnet. Wozu gibt es Computer?

 

In java wäre ein einfacher greedy Ansatz etwa so

 

 

public static boolean [] prim(zahl){

 

boolean [] prim=new boolean[zahl-1];

for(int i=0; i

prim=true;

}

for(int i=1; i

for(int k=2; k*k

if((i+2)%k==0) prim=false;

}

}

return prim;

}

 

Oder man zählt eben durch. Geht sicher schneller, als Java zu lernen. :p

Link to comment
Share on other sites

Oder man zählt eben durch. Geht sicher schneller, als Java zu lernen.

 

 

 

 

 

kommt drauf an wie weit du zählen willst.

 

zählst du bis 1Mrd ist es wohl schneller java zu lernen ^^

mein algorithmus lässt sich übrigens noch verbessern. Schließlich muss man nicht alle Zahlen durchzählen.

Edited by Chrochax
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...