parent
071c17352d
commit
491079cfa0
@ -1,29 +1,29 @@
|
|||||||
<html><body><pre><script>
|
<html><body><pre><script>
|
||||||
var tab = [32,12,234,98,6,8,29,15,1053,14,34];
|
var tab = [32,12,234,98,6,8,29,15,1053,14,34];
|
||||||
document.write("\ntrier un tableau par bulle");
|
document.write("\ntrier un tableau par bulle");
|
||||||
document.write("\n"+tab.toString());
|
document.write("\n"+tab.toString());
|
||||||
/*
|
/*
|
||||||
pour i=11; i > 0; i--
|
pour i=11; i > 0; i--
|
||||||
pour j=0; j < i; j++
|
pour j=0; j < i; j++
|
||||||
pour j allant de 0 à i-1
|
pour j allant de 0 à i-1
|
||||||
si tab[j+1] < tab[j]
|
si tab[j+1] < tab[j]
|
||||||
tmp = tab[j+1];
|
tmp = tab[j+1];
|
||||||
tab[j+1] = tab[j];
|
tab[j+1] = tab[j];
|
||||||
tab[j] = tmp;
|
tab[j] = tmp;
|
||||||
fin si
|
fin si
|
||||||
fin pour
|
|
||||||
fin pour
|
fin pour
|
||||||
*/
|
fin pour
|
||||||
for( i = tab.length ; i>0 ; i-- ) {
|
*/
|
||||||
for( j=0 ; j < i-1 ; j++ ) {
|
for( i = tab.length ; i>0 ; i-- ) {
|
||||||
if( tab[j+1] < tab[j]) {
|
for( j=0 ; j < i-1 ; j++ ) {
|
||||||
var tmp = tab[j+1];
|
if( tab[j+1] < tab[j]) {
|
||||||
tab[j+1] = tab[j];
|
var tmp = tab[j+1];
|
||||||
tab[j] = tmp;
|
tab[j+1] = tab[j];
|
||||||
//document.write("\n"+tab.toString());
|
tab[j] = tmp;
|
||||||
}
|
//document.write("\n"+tab.toString());
|
||||||
}
|
}
|
||||||
//document.write("\n"+tab.toString());
|
}
|
||||||
}
|
//document.write("\n"+tab.toString());
|
||||||
document.write("\n"+tab.toString());
|
}
|
||||||
|
document.write("\n"+tab.toString());
|
||||||
</script></pre><body></html>
|
</script></pre><body></html>
|
||||||
|
@ -1,30 +1,27 @@
|
|||||||
<html><body><pre>
|
<html><body><pre><script>
|
||||||
<script>
|
document.write("\ndiviser (avec reste) 31 par 5 par soustraction \n");
|
||||||
document.write("\ndiviser (avec reste) 31 par 5 par soustraction \n");
|
/* Pseuso code :
|
||||||
/* Pseuso code :
|
variable opD,opG,resultat entier;
|
||||||
variable opD,opG,resultat entier;
|
resultat = 0;
|
||||||
resultat = 0;
|
opD=5;
|
||||||
opD=5;
|
opG=31;
|
||||||
opG=31;
|
reste=opG;
|
||||||
reste=opG;
|
|
||||||
|
|
||||||
tant que reste > opD
|
tant que reste > opD
|
||||||
resultat ++;
|
|
||||||
reste = reste - 5;
|
|
||||||
fin tant que
|
|
||||||
afficher resultat ~ " reste " ~ reste;
|
|
||||||
*/
|
|
||||||
var opD, opG, resultat, reste;
|
|
||||||
opD = 5;
|
|
||||||
opG = 31;
|
|
||||||
resultat=0;
|
|
||||||
reste = opG;
|
|
||||||
while(reste > opD) {
|
|
||||||
resultat ++;
|
resultat ++;
|
||||||
reste = reste - opD;
|
reste = reste - 5;
|
||||||
}
|
fin tant que
|
||||||
document.write(resultat + " reste " + reste);
|
afficher resultat ~ " reste " ~ reste;
|
||||||
</script></pre>
|
*/
|
||||||
</body></html>
|
var opD, opG, resultat, reste;
|
||||||
|
opD = 5;
|
||||||
|
opG = 31;
|
||||||
|
resultat=0;
|
||||||
|
reste = opG;
|
||||||
|
while(reste > opD) {
|
||||||
|
resultat ++;
|
||||||
|
reste = reste - opD;
|
||||||
|
}
|
||||||
|
document.write(resultat + " reste " + reste);
|
||||||
|
</script></pre></body></html>
|
||||||
|
|
Loading…
Reference in new issue