2数字之间的差异差异、数字

2023-09-11 23:02:50 作者:凉了时光伤了心

我需要完美的算法或C#函数来计算2十进制数之间的差额(距离)。

I need the perfect algorithm or C# function to calculate the difference (distance) between 2 decimal numbers.

例如之间的区别: 100 和 25 是 75 100 和 -25 是 125 -100 和 -115 是 15 -500 和 100 是 600

For example the difference between: 100 and 25 is 75 100 and -25 is 125 -100 and -115 is 15 -500 and 100 is 600

有一个C#函数或一个非常优雅的算法来计算这还是我必须去单独处理每一个案件带的如果的秒。

Is there a C# function or a very elegant algorithm to calculate this or I have to go and handle every case separately with ifs.

如果有这样的功能或算法,其中之一是什么?

If there is such a function or algorithm, which one is it?

推荐答案

您可以像这样

public decimal FindDifference(decimal nr1, decimal nr2)
{
  return Math.Abs(nr1 - nr2);
}