TP-programmation-orientee-o.../TP08/IntOrdreCroissant.java

9 lines
163 B
Java
Raw Normal View History

2023-06-20 19:02:09 +00:00
public class IntOrdreCroissant implements Comparateur<Integer> {
@Override
public boolean inf(Integer n1, Integer n2) {
return n1 < n2;
}
}