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

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

Binary file not shown.