From 8c542b71deabde36f0c91a69f559b9398447421a Mon Sep 17 00:00:00 2001 From: fdai6120 Date: Fri, 10 Feb 2023 21:58:52 +0000 Subject: [PATCH] =?UTF-8?q?"randomNumberArray()=20hizugef=C3=BCgt"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ITsecAufgaben/ITsecAufgaben.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ITsecAufgaben/ITsecAufgaben.java b/ITsecAufgaben/ITsecAufgaben.java index 9c432e9..294c655 100644 --- a/ITsecAufgaben/ITsecAufgaben.java +++ b/ITsecAufgaben/ITsecAufgaben.java @@ -6,6 +6,19 @@ import java.lang.Math; 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() { System.out.println(