I have a number (\"double\") from int/int (such as 10/3).
What\'s the best way to Approximation by Excess and convert it to int on C#?
int scaled = (int)Math.Ceiling( (double) 10 / 3 ) ;