dimanche 7 juin 2015

Primzahlenberechnung

Hallo liebes Forum,

ich hab nur ne kurze Frage. Stimmt mein Code, um eine einzelne Zahl daraufhin zu prüfen, ob es sich um eine Primzahl handelt?

Java Code:

  1. public boolean divisionsverfahren(int n){
  2. boolean primzahl = false;
  3. int ergebnis = 0;
  4. double wurzel = Math.sqrt(n);
  5. for(int i=2; i < (int)wurzel; i++){
  6. double zahl = n % i;
  7. if(zahl != 0){
  8. ergebnis++;
  9. }
  10. }
  11. if(ergebnis != 0){
  12. primzahl = true;
  13. }
  14. return primzahl;
  15. }


Schon mal VIELEN DANK im voraus. :)


Primzahlenberechnung

0 commentaires:

Enregistrer un commentaire