This commit is contained in:
Tim
2021-02-22 09:37:34 +10:30
parent aa0f3f4338
commit 143370069b
11 changed files with 109 additions and 122 deletions

View File

@@ -12,7 +12,7 @@ public class Card {
private void init(int value) {
this.value = value;
if(value <11) {
if (value < 11) {
this.name = String.valueOf(value);
} else {
switch (value) {