Section courante

A propos

Section administrative du site

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

Jusqu'à la version de Python 2
  1. i=0
  2. while i < 10:
  3.     j=0
  4.     s=""
  5.     while j <= i:
  6.          s=s+" "+str(j*i)
  7.          j=j+1
  8.     print s
  9.     i=i+1
  10.  
  11. # Dessin Triangle
  12.  
  13. i=0 
  14. while i < 13:
  15.     j=0
  16.     s=""
  17.     while j <= 13-i:
  18.         s=s+" "
  19.         j=j+1
  20.     s=s+ "< "
  21.     j=0
  22.     while j <= i+i:
  23.         s=s+ "x "
  24.         j=j+1
  25.     print s+"*"
  26.     i=i+1

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 : Dimanche, le 26 février 2012