Browse Source

"randomNumberArray() hizugefügt"

remotes/origin/fdai7487-main-patch-56841
fdai6120 2 years ago
parent
commit
8c542b71de
  1. 13
      ITsecAufgaben/ITsecAufgaben.java

13
ITsecAufgaben/ITsecAufgaben.java

@ -6,6 +6,19 @@ import java.lang.Math;
public class ITsecAufgaben { public class ITsecAufgaben {
public int[] randomNumberArray(int[] ausgabe) {
int max = 99, min = 0, range, random;
range = max - min + 1;
for(int i = 0; i <= (ausgabe.length - 1); i++) {
random = (int) (Math.random() * range) + min;
ausgabe[i] = random;
}
return ausgabe;
}
public void fünfteAufgabe() { public void fünfteAufgabe() {
System.out.println( System.out.println(

Loading…
Cancel
Save