How to use arithmetic (math) methods with decimal type in C#

1 Answer

0 votes
using System;

namespace ConsoleApplication_C_Sharp
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine(decimal.Add(3.13M, 0.01M));

            Console.WriteLine(decimal.Subtract(3.15M, 0.01M)); 

            Console.WriteLine(decimal.Multiply(17.0M, 5.0M));

            Console.WriteLine(decimal.Divide(25M, 5M)); 
        }
    }
}

/*
run:
     
3.14
3.14
85.00
5
  
*/

 



answered Jan 17, 2017 by avibootz

Related questions

1 answer 124 views
124 views asked Sep 21, 2023 by avibootz
1 answer 230 views
230 views asked Jun 11, 2019 by avibootz
1 answer 206 views
206 views asked Jun 10, 2019 by avibootz
1 answer 173 views
1 answer 173 views
173 views asked Jan 17, 2017 by avibootz
...