Display Absolute Value Without Abs Method in C# – Programming, Pseudocode Example, C# Programming Example
C# C# Console

Display Absolute Value Without Abs Method in C#

In this example, i’ll show you How to get absolute value without Math.Abs  function.

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.

 

Solution1:

C# Code:

 

Solution 2:

Return absolute value without using abs function.

 

Output:

Leave a Comment

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