6 au cube + 2 au cube = 8 au cube
ça me parait juste non ?? cette fois j'ai vraiment fait un effort wallh
!!
ça me parait juste non ?? cette fois j'ai vraiment fait un effort wallh

public class Enigm { public static void main (String [] args) { System.out.println("Resolution du probleme a3 + b3 =c3 "); for (int a=0; a<255; a++) { for (int b=0; b<255; b++) { for (int c=0; c<255; c++) { if (a*a*a + b*b*b == c*c*c) { System.out.println("Solution trouve: a= " + a + " b=" + b + " c=" + c); } //break; } } } } }
Commentaire