Second Draft

main
Eric Paci 2024-05-14 22:30:14 +02:00
parent f47b3a3ed7
commit 96ce02d1f3
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ public class Schachbrett {
public static boolean istEingabeUngueltig(int Zahl) {
if (Zahl < 1 || Zahl > 8) {
System.out.println("Falsche Eingabe, bitte gebe eine Zahl zwischen 1 und 8 ein.");
System.out.println("Falsche Eingabe, bitte gib eine Zahl zwischen 1 und 8 ein.");
return true;
} else return false;