Section courante

A propos

Section administrative du site

Voici un exemple d'une classe permettant d'afficher un triangle Pascal écrit en C# (C Sharp) :

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace triangle
  6. {
  7.     class Program
  8.     {
  9.         static void Main(string[] args)
  10.         {
  11.             // Triangle de nombre de Pascal
  12.             for ( int i = 0; i < 10; i++) { 
  13.                 for ( int j =0; j <= i; j++) { 
  14.                     Console.Write(" "+j*i); 
  15.                 } 
  16.             Console.WriteLine(); 
  17.         } 
  18.             // Dessin Triangle
  19.         for ( int i = 0; i < 13; i++) { 
  20.             for ( int j = 0; j <= 13-i; j++) Console.Write(" ");
  21.             Console.Write("< "); 
  22.             for ( int j = 0; j <= i+i; j++) Console.Write("x "); 
  23.             Console.WriteLine("*");
  24.         }
  25.  
  26.    } 
  27.  
  28.  
  29.     }
  30. }

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 : Samedi, le 16 août 2014