c – 比较两个整数,无任何比较

前端之家收集整理的这篇文章主要介绍了c – 比较两个整数,无任何比较前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
没有比较可以找到最大的两个整数吗?我找到了一些解决方案:
if(!(a/b)) // if a is less than b then division result will be zero.
{
    cout << " b is greater than a";
}
else if (!(a-b)) // we know a is greater than or equal to b now.  check whether they are equal.
{
    cout << "a and b are equal";
}
else
    cout << "a is greater than b";

但是如果(c)或if(!c)与零的比较.另外它不负责负数.其实我需要一个解决方案来避免任何if语句.而应该使用switch语句和算术运算符.感谢名单.

解决方法

减去他们,并使用令人讨厌的微小黑客攻击检查标志
http://graphics.stanford.edu/~seander/bithacks.html

如果其他程序员知道你住在哪里,不要在生产代码中执行此操作.

原文链接:https://www.f2er.com/c/114467.html

猜你在找的C&C++相关文章