PROBLÈMECode source <script language="JavaScript"><!-- ; nt=56; i=0; // i est la variable qui désigne le nombre de chats while(i<10) { p=5*i; d=56-p; nbchiens=(d/6); p2=6*nbchiens; r=d%6; if (r==0) { document.write(" 5 x "+i+" = "+p+"<BR>56 - "+p+" = "+d+" qui divisé par 6 font "+nbchiens+" Il reste "+r+" <BR>"); document.write("Il y a donc "+i+" chats et "+nbchiens+" chiens.<BR><BR>"); document.write("<B><U>Vérification </U>: </B><BR>5 biscuits pour "+i+" chats font "+p+" biscuits.<BR>6 biscuits pour "+nbchiens+" chiens font "+p2+ " biscuits.<BR>"); document.write(p+" + "+p2+" = 56<BR>"); } i++; } document.write(); // end hide --> </script> |