gpt4 book ai didi

c# - 计算公差值

转载 作者:行者123 更新时间:2023-12-02 16:35:44 26 4
gpt4 key购买 nike

我有一个输入值,例如

decimal input = 100.4m;

和一个可以改变的比较值/公差。所以在这个例子中 99.5100.5 是有效的,其他输入值不是。

decimal tolerance = 0.5m;
decimal compareValue = 100m;

问题:有没有比这更优雅的验证方式:

bool isValid = (input >= compareValue - tolerance) && (input <= compareValue + tolerance);

最佳答案

这取决于你如何定义优雅...!您也可以使用 Abs 进行检查:

bool isValid = Math.Abs(input - compareValue) <= tolerance;

关于c# - 计算公差值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62757850/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com