19-11-2009, 01:39 AM
Bonjour,
j'ai un algorithme contenant l'instruction suivante:
[...]
[...]
Comment transcrire cela en PHP?
j'ai un algorithme contenant l'instruction suivante:
[...]
Code :
TANT QUE i <= q ET ALORS j < p FAIRE ...
Comment transcrire cela en PHP?
Code PHP :
<?php
while($i <= $q ??? $j < $p) ...
Merci.