Section courante

A propos

Section administrative du site

Voici un exemple d'une classe permettant d'afficher un triangle Pascal que j'ai développer pour un exercice à l'école :

  1. <script type="text/javascript" language="javascript">
  2.  // Triangle de nombre de Pascal
  3. for ( i = 0; i < 10; i++) {
  4.    for ( j =0; j <= i; j++) {
  5.       document.write(" "+j*i);
  6.    }
  7.    document.write("<BR>");
  8. }
  9.  
  10.  // Dessin Triangle
  11. for ( i = 0; i < 13; i++) {
  12.    for ( j = 0; j <= 13-i; j++) document.write(" ");       
  13.    document.write("< ");
  14.    for ( j = 0; j <= i+i; j++) document.write("x ");
  15.    document.write("*<BR>");
  16. } 
  17.  
  18. </script>

on obtiendra le résultat suivant :

0
0 1
0 2 4
0 3 6 9
0 4 8 12 16
0 5 10 15 20 25
0 6 12 18 24 30 36
0 7 14 21 28 35 42 49
0 8 16 24 32 40 48 56 64
0 9 18 27 36 45 54 63 72 81
                            < x *
                          < x x x *
                        < x x x x x *
                      < x x x x x x x *
                    < x x x x x x x x x *
                  < x x x x x x x x x x x *
                < x x x x x x x x x x x x x *
              < x x x x x x x x x x x x x x x *
            < x x x x x x x x x x x x x x x x x *
          < x x x x x x x x x x x x x x x x x x x *
        < x x x x x x x x x x x x x x x x x x x x x *
      < x x x x x x x x x x x x x x x x x x x x x x x *
    < x x x x x x x x x x x x x x x x x x x x x x x x x *

Voir également

Science - Mathématique

Dernière mise à jour : Mercredi, le 5 octobre 2011