dimanche 7 juin 2015
Primzahlenberechnung
Posted on 10:26 by verona
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?
Schon mal VIELEN DANK im voraus. :)
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:
-
public boolean divisionsverfahren(int n){
-
boolean primzahl = false;
-
int ergebnis = 0;
-
for(int i=2; i < (int)wurzel; i++){
-
double zahl = n % i;
-
if(zahl != 0){
-
ergebnis++;
-
}
-
}
-
if(ergebnis != 0){
-
primzahl = true;
-
}
-
return primzahl;
-
}
Schon mal VIELEN DANK im voraus. :)
Primzahlenberechnung
Categories: Primzahlenberechnung
Inscription à :
Publier les commentaires (Atom)
0 commentaires:
Enregistrer un commentaire