Math et CSharp

De Banane Atomic
Aller à la navigationAller à la recherche
Csharp.svg
double d = 123.456;

double d1 = Math.Truncate(d); // partie entière: 123
double d2 = Math.Ceiling(d); // arrondi supérieur: 124
double d3 = Math.Floor(d); // arrondi inférieur: 123