Ali B. Posted February 27, 2008 Share Posted February 27, 2008 ich brauch alle Primzahlen bis 200 Quote Link to comment Share on other sites More sharing options...
Legend Killer Posted February 27, 2008 Share Posted February 27, 2008 hier: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199 Quote Link to comment Share on other sites More sharing options...
HuZuNLuYuM Posted May 14, 2008 Share Posted May 14, 2008 ist die 2 auch eine Primzahl ??? Quote Link to comment Share on other sites More sharing options...
T.E. Posted May 14, 2008 Share Posted May 14, 2008 Jepp, alles Zahlen, die nur durch 1 uns sich selbst teilbar sind, eben aucvh die 2. Quote Link to comment Share on other sites More sharing options...
hanna Posted December 2, 2012 Share Posted December 2, 2012 Die 199 ist keine Primzahl! Sie ist durch 11 teilbar:199:11=19! Quote Link to comment Share on other sites More sharing options...
Guest galama Posted December 2, 2012 Share Posted December 2, 2012 Die 199 ist keine Primzahl! Sie ist durch 11 teilbar:199:11=19! Sorry, Quote Link to comment Share on other sites More sharing options...
Chrochax Posted February 10, 2013 Share Posted February 10, 2013 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; } Quote Link to comment Share on other sites More sharing options...
Ticktack Posted February 10, 2013 Share Posted February 10, 2013 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. Quote Link to comment Share on other sites More sharing options...
Chrochax Posted February 10, 2013 Share Posted February 10, 2013 (edited) 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 February 10, 2013 by Chrochax Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.