■ Math 클래스의 Round 정적 메소드를 사용해 반올림하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 |
using System; double sourceValue = 0.5; double targetValue1 = Math.Round(sourceValue, 0); Console.WriteLine(string.Format("반올림 : {0}", targetValue1)); // 0이 된다. double targetValue2 = Math.Round(sourceValue, 0, MidpointRounding.AwayFromZero); Console.WriteLine(string.Format("반올림 : {0}", targetValue2)); // 1이 된다. |