我想知道如何舍入到最接近的100,當值被截斷時。 我用的是這樣的:舍入到最接近的截斷的100
private static int CalculatePaperLevel(int paperLevel)
{
int roundedLevel = 0;
roundedLevel = ((int)Math.Round(paperLevel/10.0) * 10);
return roundedLevel;
}
但是這是我想要的
E.G. 191 - > 100
224 - > 200
140 - > 100
295 - > 200
http://stackoverflow.com/q/15028144/62576 –