Bug in Generierung der Kreditkartennummer behoben

This commit is contained in:
Marc Koch 2020-04-06 16:04:57 +02:00
parent 09551d75d4
commit 3c62f29400
1 changed files with 1 additions and 1 deletions

View File

@ -80,6 +80,6 @@ public class Main {
public static int erzeugeZugallszahl() {
return (int) (Math.random() * 9) + 1;
return (int) (Math.random() * 10);
}
}