C# C# Console

Display Absolute Value in C#

In mathematics, the absolute value or modulus of a real number x, denoted |x|, is the non-negative value of x without regard to its sign. Namely, |x| = x if x is positive, and |x| = −x if x is negative (in which case −x is positive), and |0| = 0. For example, the absolute value of 3 is 3, and the absolute value of −3 is also 3. The absolute value of a number may be thought of as its distance from zero.

To find the absolute value of a number in C#, use the Math.Abs method.

 

Example 1:

 

Example 2:

Write a C# program to get the absolute value of the difference between two given numbers. Return double the absolute value of the difference if the first number is greater than second number.

 

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.