如何在 C++ 中计算模数?
如何在 C++ 中执行两个整数之间的取模运算?
How do I perform a mod operation between two integers in C++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 C++ 中执行两个整数之间的取模运算?
How do I perform a mod operation between two integers in C++?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
C++ 有
%
运算符,有时会被误导性地命名为“模数”运算符。特别是,STL 在
标头中具有modulus<>
函子。请注意,这不是数学模数运算符,因为在模算术中,根据定义,对于任何 a 值和任何正值,a mod b
的计算结果都是非负值b
。在 C++ 中,如果任一参数为负,则a % b
结果的符号是实现定义的。因此,我们更恰当地将%
运算符命名为 remainder 运算符。也就是说,如果您确实想要数学模运算符,那么您可以定义一个函数来执行此操作:
只要
b
是正值,对上述函数的调用将产生非负结果。C++ has the
%
operator, occasionally and misleadingly named "the modulus" operator. In particular the STL has themodulus<>
functor in the<functional>
header. That's not the mathematical modulus operator, mind you, because in modulus arithmeticsa mod b
by definition evaluates to a non-negative value for any value ofa
and any positive value ofb
. In C++ the sign of the result ofa % b
is implementation-defined if either of the arguments is negative. So, we would more appropriately name the%
operator the remainder operator.That said, if you truly want the mathematical modulus operator then you can define a function to do just that:
So long as
b
is a positive value a call to the above function will yield a non-negative result.在 C++ 中,使用 % 运算符
更多帮助
In c++, use % operator
More Help
正如其他答案所述,您可以使用 C++ % 运算符。但请注意,还有一个问题尚未有人提及:在表达式
a % b
中,如果a
为负怎么办?该操作的结果应该是正数还是负数? C++ 标准将其留给
执行。因此,如果您想便携地处理负输入,您可能应该
执行类似
r = abs(a) % b
的操作,然后修复r
的符号以满足您的要求。As the other answers have stated, you can use the C++ % operator. But be aware that there's a wrinkle no one has mentioned yet: in the expression
a % b
, what ifa
is negative?Should the result of this operation be positive or negative? The C++ standard leaves this up to the
implementation. So if you want to handle negative inputs portably, you should probably
do something like
r = abs(a) % b
, then fix up the sign ofr
to match your requirements.像这样:
x=y%z
Like this:
x=y%z
使用模
%
运算符:Using the modulus
%
operator :如果你使用双变量,你应该使用;
if you use double variable, you should use;