gpt4 book ai didi

c++ - 如何在不使用 cmath 的情况下返回数字的上限

转载 作者:塔克拉玛干 更新时间:2023-11-03 06:53:41 26 4
gpt4 key购买 nike

如何在不使用 cmath 的情况下获取两个 double 类型输入的底数:如果第一个输入为负但不适用于不确定哪里出错的正整数,这就是它的工作原理?任何见解表示赞赏..谢谢

 int main()
{
floors=floor(n1);
cout<< " The floor of value 1 is " <<floors<<endl;
floors=floor(n2);
cout<<" The floor of value 2 is " <<floors<<endl;


long floor(long f)
{
if( (f+ 0.5) >= (int(f)-1) )
return int (f)-1;
else
return int (f);
}

最佳答案

将其更改为:

long floor(double f)
{
if( f >= 0.0 ) {
return int(f);
} else {
return ( int(f) - 1 );
}
}

关于c++ - 如何在不使用 cmath 的情况下返回数字的上限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13037767/

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