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