public class Traitement { public static boolean isIn(int min, int max, Fonction laFonction, double x) { return min 0) x=Double.parseDouble(args[0]); Polynome unPolynome = new Polynome(1, 2, 3); int min=0; int max=10; System.out.println(min+" < "+unPolynome+" < "+max+", pour x="+x+" ? " + isIn(min, max, unPolynome, x)); } }