Section courante

A propos

Section administrative du site

Voici un exemple d'une classe permettant d'afficher un triangle Pascal :

  1. <%
  2. For I=0 To 9
  3.     For J=0 to I
  4.           Response.Write " " & CStr(J*I)
  5.     Next
  6.     Response.Write "<BR>"
  7. Next
  8.  
  9. ' Dessin Triangle
  10.  
  11. For I=0 To 12
  12.     For J=0 To 13-I
  13.         Response.Write " "
  14.     Next
  15.     Response.Write "< "
  16.      For J=0 To I+I
  17.         Response.Write "x "
  18.     Next
  19.     Response.Write "*<BR>"
  20. Next
  21. %>

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 20 août 2014