decimals and arithmetic operators : decimal « Data Type « C# / CSharp Tutorial






class MainClass
{

  public static void Main()
  {
    
    System.Console.WriteLine("10m / 3m = " + 10m / 3m);
    decimal decimalValue1 = 10;
    decimal decimalValue2 = 3;
    System.Console.WriteLine("decimalValue1 / decimalValue2 = " + decimalValue1 / decimalValue2);
  }
}
10m / 3m = 3.3333333333333333333333333333
decimalValue1 / decimalValue2 = 3.3333333333333333333333333333








2.30.decimal
2.30.1.Declare decimal variable
2.30.2.To specify a decimal constant, begin the specification with a nonzero digit.
2.30.3.Manually create a decimal number.
2.30.4.The Methods and Fields Defined by Decimal
2.30.5.decimal literal
2.30.6.decimals and arithmetic operators
2.30.7.Decimal ranges
2.30.8.Specifying a Literal decimal
2.30.9.decimal Types