PROBLÈMECode source <script language="JavaScript"><!-- ; //-----------------------algorithme------------------------------------------------------ i=1; h=0; while(i<=12) { h=h+3; document.write("<B><U>Jour N° "+i+"</U></B><BR> Soir : "+h+" m.<BR>"); if(h==12) { document.write("<BR><B>Il sortira donc du trou au soir du "+i+"<sup>e</sup> jour.</B><BR><BR><BR><BR><BR>"); exit; } h=h-2; document.write("Matin : "+h+" m<BR><BR>"); i++; } //--------------------------------------------------------------- document.write(); // end hide --> </script> |