(Item a, Item b)
| 19 | } |
| 20 | } |
| 21 | public static void match(Item a, Item b) { |
| 22 | System.out.println( |
| 23 | a + " vs. " + b + ": " + a.compete(b)); |
| 24 | } |
| 25 | public static void main(String[] args) { |
| 26 | for(int i = 0; i < SIZE; i++) |
| 27 | match(newItem(), newItem()); |