 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Manipulate decimals with numeric operators in C#
With C#, you can manipulate decimals with operators such as _+, - *, etc.
Let us see how to subtract decimal values.
Firstly, set two decimal values −
decimal d1 = 9.5M; decimal d2 = 4.2M;
Now to subtract the two values −
d1 = d1 - d2;
The following is the code −
Example
using System; using System.Linq; class Demo {    static void Main() {       decimal d1 = 9.5M;       decimal d2 = 4.2M;       d1 = d1 + d2;       Console.WriteLine("Addition of Decimals: "+d1);       d1 = d1 - d2;       Console.WriteLine("Subtraction of Decimals: "+d1);    } }  Output
Addition of Decimals: 13.7 Subtraction of Decimals: 9.5
Advertisements
 