From dd96b848e5b03c514c500b09478a87fd3e27c037 Mon Sep 17 00:00:00 2001 From: pc Date: Thu, 5 Jan 2023 10:31:56 +0100 Subject: [PATCH] =?UTF-8?q?"User=20input=20&=20L=C3=B6sungen=20printen=20z?= =?UTF-8?q?u=20Aufgabe=204=20hinzugef=C3=BCgt"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ITsecAufgaben/ITsecAufgaben.java | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/ITsecAufgaben/ITsecAufgaben.java b/ITsecAufgaben/ITsecAufgaben.java index 974168a..c59c97e 100644 --- a/ITsecAufgaben/ITsecAufgaben.java +++ b/ITsecAufgaben/ITsecAufgaben.java @@ -55,7 +55,31 @@ public class ITsecAufgaben { frage = in.nextInt(); + // <--- User-input + System.out.println("Zeigen Sie nun di2e Lösung mit '0' an & vergleichen Sie Ihre Eingabe:\n"); + result = in.nextInt(); + + if (result == 0) { + String res = ""; + + for (int i = 0; i < 8; i++) { + res += "" + lösung[i][0] + " | " + lösung[i][1] + " | " + lösung[i][2] + "\n"; + } + + System.out.println("\n\n"); + + res = ""; + + for (int i = 0; i < 8; i++) { + res += "" + aufgabe[i][0] + " | " + aufgabe[i][1] + " | " + aufgabe[i][2] + "\n"; + } + + } else { + System.out.println("Bitte nochmal '0' eingeben, ansonsten 'STRG + Z'"); + result = in.nextInt(); + } + in.close(); }