- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
考虑:
int a, b;
int c = b * (a / b)
我认为它对正数的作用应该很清楚:c 被设置为 b 的倍数,b 相对于 a 的下一个较小值。
例子:令b = 2
,则:
a = 0 => c = 0
a = 1 => c = 0
a = 2 => c = 2
a = 3 => c = 2
然而,对于负数,它以相反的方式工作:它取 b 的下一个更大(负数较小)的倍数。 同时选择下一个更小(更负)的 b 倍数的最佳方法是什么?
最佳答案
怎么样:
#include <cstdlib>
#include <iostream>
int round_down(int val, int unit) {
std::div_t div_result = std::div(val, unit);
int candidate = div_result.quot * unit;
return candidate <= val ? candidate :
unit >= 0 ? candidate - unit :
candidate + unit;
}
int main() {
std::cout << round_down(9, 7) << std::endl;
std::cout << round_down(13, 2) << std::endl;
std::cout << round_down(15, 3) << std::endl;
std::cout << round_down(-9, 7) << std::endl;
std::cout << round_down(-13, 2) << std::endl;
std::cout << round_down(-15, 3) << std::endl;
std::cout << round_down(9, -7) << std::endl;
std::cout << round_down(13, -2) << std::endl;
std::cout << round_down(15, -3) << std::endl;
std::cout << round_down(-9, -7) << std::endl;
std::cout << round_down(-13, -2) << std::endl;
std::cout << round_down(-15, -3) << std::endl;
}
请注意,在 C++11 之前,内置除法运算符 /
的舍入方向是实现定义的。所以,我改用 std::div()
。引自 cppreference (强调我的):
The binary operator / divides the first operand by the second (after usual arithmetic conversions).
For integral operands, it yields the algebraic quotient.
The quotient is rounded in implementation-defined direction. (until C++11)
The quotient is truncated towards zero (fractional part is discarded). (since C++11)
...
Note: Until C++11, if one or both operands to binary operator % were negative, the sign of the remainder was implementation-defined, as it depends on the rounding direction of integer division. The function std::div provided well-defined behavior in that case.
关于c++ - 安全地舍入到下一个更小的倍数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33956318/
我似乎对 git 存储库有权限问题。 当我 pull 入一个不是我的 Linux 用户创建的目录时,我出现了这个错误。 fatal: Unable to create '/home/---/.git/
在 Git 中,您可以将给定目录克隆到给定目录: git clone ssh://gitolite@dev.bipper.com:3687/com/bipper/kids/portal 当我运行我们
目前,如果您在分支 V2 中并执行“git pull origin V3”,它会将 V3 merge 到 V2,甚至不会发出警告或提示。这个选项可以以某种方式被阻止吗?我在这里阅读了所有类似的问题,人
我刚开始使用 Oracle 的 Coherence 缓存,我注意到这一点:如果我在缓存中放入一个 ConcurrentHashMap 对象,当我检索它时,我可以看到它被转换为一个普通的 HashMap
看起来我缺少对 git pull 和 git commit 的基本理解,假设我在分支上工作,而它在我更新时被其他开发人员更新了在本地做我的工作。我应该在发出 git pull 之前提交更改,还是应该执
好的。所以我以为我已经舔过了……但现在…… 我有一个项目,其中包含一个来自 GitHub 的小型库作为子模块。在该 super 项目的原始版本中,子模块按预期工作。 但是,我只是克隆了 super 项
使用 Visual Studio Code 中的内置 Git,我看不到将指定的远程分支 pull 入当前分支的方法。我可以这样做吗? 示例:我正在分支 myBranch 上工作,更改已 merge 到
当我尝试提交或 pull 此错误时 Bus error (core dumped) 发生了! 当我用 gdb 调试它时,(gdb git,run commit -a,where) 结果是: mucul
我对默认 Rails Rake 任务的预期用途有点困惑,想咨询一下我是否应该使用 db:reset或编写自定义 Rake 任务。没什么聪明的,只是日常管理,而且我很可能会错过一个明显的文档,因为我是
所以我做了: git reset --hard #commithash # make a bunch of changes, fixes and so on. git add -A git commi
我已使用以下命令成功部署到 firebase 托管应用: firebase init firebase deploy 在这个阶段,我正在执行 git pull 以将 repo 下 pull 到暂存服务
当尝试在 Eclipse 的 git 存储库中 pull (团队|从上下文菜单中 pull )时,出现 Could not get advertised Ref for branch refs/hea
我是一名优秀的程序员,十分优秀!