mardi 10 février 2015
Int to string und primzahle ermitteln
Posted on 14:43 by verona
ist das so okay oder würdet ihr das anders schreiben?!
evtl geht es kürzer ?
public static boolean primtest(int prim) {
boolean test = true;
for (int i = 2; i <= prim / 2; i++) {
if (prim % i == 0) {
test=false;
}
}
return test;
}
-----------------------------------------------------------
public static int[] inttostring(int a) {
int i = 0;
while (a >= Math.pow(10, i)) {
i++;
}
int[] peter = new int[i];
for (int j = i - 1; j >= 0; j--) {
peter[j] = a % 10;
a /= 10;
}
return peter;
}
evtl geht es kürzer ?
public static boolean primtest(int prim) {
boolean test = true;
for (int i = 2; i <= prim / 2; i++) {
if (prim % i == 0) {
test=false;
}
}
return test;
}
-----------------------------------------------------------
public static int[] inttostring(int a) {
int i = 0;
while (a >= Math.pow(10, i)) {
i++;
}
int[] peter = new int[i];
for (int j = i - 1; j >= 0; j--) {
peter[j] = a % 10;
a /= 10;
}
return peter;
}
Int to string und primzahle ermitteln
Categories: Int to string und primzahle ermitteln
Inscription à :
Publier les commentaires (Atom)
0 commentaires:
Enregistrer un commentaire