class MeNewton extends MeItClassiqGen {
FoncRDansR df;MeNewton(double x0, double eeps, int n, FoncRDansR fonc, FoncRDansR defonc) {
xn=x0;
f=fonc;
df=defonc;eps=eeps;nmax=n;}// calcul d’une iteration :public double iter() {
	xn = xn - f.calcul(xn)/df.calcul(xn) ;return xn;}}
