This commit is contained in:
Sobottasgithub 2025-11-12 17:05:20 +01:00
parent 7512346c7a
commit 52b14b6ad2
3 changed files with 27 additions and 27 deletions

View File

@ -7,7 +7,7 @@ public class HandleArray {
if (arrayInput.length > 1) {
printArray(Arrays.copyOfRange(arrayInput, 1, arrayInput.length));
} else {
System.out.print("\n");
System.out.println();
}
}
@ -16,7 +16,7 @@ public class HandleArray {
if (arrayInput.length > 1) {
printArrayRev(Arrays.copyOfRange(arrayInput, 0, arrayInput.length - 1));
} else {
System.out.print("\n");
System.out.println();
}
}