This commit is contained in:
Joshua Sigona 2021-03-27 17:35:23 +09:00
parent f697b3a759
commit 8bab51e179
3 changed files with 8 additions and 1 deletions

Binary file not shown.

View File

@ -389,7 +389,14 @@ public class App
if (ss.equalsIgnoreCase("A")) { if (ss.equalsIgnoreCase("A")) {
count--; count--;
} else { } else {
descriptions.add(ss); if (StringUtils.isNumeric(ss)) {
descriptions.add(names.get(names.size()-1));
names.set(names.size()-1,"?");
scores.add(Integer.parseInt(ss));
count++;
} else {
descriptions.add(ss);
}
} }
}break; }break;
} }

Binary file not shown.