四捨五入


ProgramingDouble型の数値を小数点以下第2位で四捨五入

Double d = 8.7654321;
d = Math.Floor(d*100 + 0.5)*0.01;