실수 데이터를 decimal 변수에 넣고 출력하는 예제를 다음과 같이 입력한 후 실행해 보세요.
decimal 키워드로 실수 데이터 형식 선언 및 초기화: DecimalDemo.cs
using System
class DecimalDemo
{
static void Main()
{
decimal d = 12.34M;
Console.WriteLine("{0}", d);
}
}
실행 결과
12.34
Note ≡ Decimal.MaxValue와 Decimal.MinValue
decimal 데이터 형식 역시 닷넷 프레임워크 데이터 형식인 Decimal의 MinValue와 MaxValue 속성으로 구할 수 있습니다.
> System.Decimal.MinValue -79228162514264337593543950335 > decimal.MaxValue 79228162514264337593543950335