using System;
namespace Fondamentaux
{
class Program
public static void Main()
void Lance1D(int nombreDeFaces)
Random monDe = new Random();
int resultatDe = monDe.Next(1,nombreDeFaces);
Console.WriteLine("Resultat du tirage = " + resultatDe);
}
for ( int i = 10; i >=1 ; i--)
Lance1D(i);
int j = 1;
while (j<=10)
Console.WriteLine(j);
j++;
j=8;
do
while(j<=10);