From dcb14924ca3f9b9d2100e2c3a9e49ffab8bde073 Mon Sep 17 00:00:00 2001 From: Drees Date: Sun, 8 Jan 2023 18:17:48 +0100 Subject: [PATCH] C3PO aus , wurde : gemacht. --- Roboter/tpe/exceptions/roboter/C3PO.java | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Roboter/tpe/exceptions/roboter/C3PO.java b/Roboter/tpe/exceptions/roboter/C3PO.java index 916a850..90bb634 100644 --- a/Roboter/tpe/exceptions/roboter/C3PO.java +++ b/Roboter/tpe/exceptions/roboter/C3PO.java @@ -31,7 +31,7 @@ public class C3PO extends Robots{ for (int i = 0; i < zahlen.length; i++) { sb.append(zahlen[i]); if (i < zahlen.length - 1) { - sb.append(", "); + sb.append("; "); } } @@ -56,10 +56,7 @@ public class C3PO extends Robots{ for (int i = 1; i < zahlen.length; i++) { z = zahlen[i]; int k = i; - /** - * hier wird die Zahl solange nach links getauscht bis die Zahl links nicht mehr kleiner - * ist als die Zahl rechts, oder die Zahl ganz links ist. - */ + while (k > 0 && zahlen[k - 1] < z) { zahlen[k] = zahlen[k - 1]; k--;