Avec Processing
int x=0; float y=0; int yy;
int x1=0, y1=0;
for(x=1; x < 10000; x++) {
y=1+3*x*x;
y=sqrt(y);
if (y - round(y) == 0) {
yy=int(y);
x1=2*x*yy; y1=3*x*x+yy*yy;
println("x = "+x+" y= "+ yy +" "+ " x' = 2xy = "+ x1 + " y'= 3x^2+y^2 = "+y1);
}
}
Cela donne avec la coloration syntaxique d’un bon éditeur de textes :
Commentaires