gpt4 book ai didi

c - 编写一条语句,查看变量是否接近 C 中保存的值

转载 作者:行者123 更新时间:2023-11-30 20:02:36 26 4
gpt4 key购买 nike

我想问如何查看读取的值是否接近常量中保存的值。有没有具体的说明或者有什么办法可以做到这一点。
等待您的回复。

问候
萨利克·萨德鲁丁·梅拉尼

示例:

//Here is what I mean
if ( a is near to b){
then do this
}

最佳答案

if( ( a>(b*0.98) ) && ( a<(b*1.02) ) )
{
//we have %2 error tolerance here. Bee careful! Dont pass the tol. level.
//do your work yourself, if you cant find, then ask us. Dont forget
//to google
}


if( abs(a-b)<(b*0.02) )
{

}

if ( abs((a-b)(a+b))<0.07 )
{


}


if(check(a,b))
{

}


if( pre_calculated )
{

}

关于c - 编写一条语句,查看变量是否接近 C 中保存的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11932731/

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