Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456
  1. public class Number implements Comparable<Number> {
  2. private int i;
  3. public Number(int i) { this.i = i; }
  4. public int getValue() { return i;}
  5. public int compareTo(Number that) { return this.getValue() - that.getValue(); }
  6. }