// Split into separate tables, to keep 80 column width.
int ngroups;
int[][] groups;
- if (nteams == 28) {
+ if (nteams == 29) {
ngroups = 2;
groups = new int[ngroups][];
groups[0] = new int[] { 0, 15 };
- groups[1] = new int[] { 15, 28 };
+ groups[1] = new int[] { 15, 29 };
} else {
ngroups = 1;
groups = new int[ngroups][];
stream.print(s);
spaces(stream,(i+1)/2);
}
- stream.print(' ');
- stream.print(' ');
- {
+ if (group == ngroups-1) {
+ stream.print(' ');
+ stream.print(' ');
String s = Integer.toString(total);
spaces(stream,3-s.length());
- stream.println(s);
+ stream.print(s);
}
+ stream.println();
stream.println("@end group");
}