parent
6c560037a1
commit
0887853f69
@ -0,0 +1,22 @@
|
|||||||
|
<html><body><pre><script>
|
||||||
|
document.write("\ndiviser (avec reste) 31 par 5 par soustraction en récusrif \n");
|
||||||
|
/* Pseuso code :
|
||||||
|
|
||||||
|
*/
|
||||||
|
function div_avec_reste(opg,opd) {
|
||||||
|
console.log("div_avec_reste("+opg+","+opd+")");
|
||||||
|
let resultat = [0,0];
|
||||||
|
if(opg < opd) {
|
||||||
|
resultat = [0,opg];
|
||||||
|
return resultat;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
resultat = div_avec_reste((opg - opd),opd);
|
||||||
|
return [resultat[0]+1, resultat[1]];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var res= div_avec_reste(31,5);
|
||||||
|
document.write(res[0] + " reste " + res[1]);
|
||||||
|
|
||||||
|
</script></pre></body></html>
|
||||||
|
|
Loading…
Reference in new issue