如果VB6中的一个数字接近另一个数字,该怎么办?
假设我有 2 个数字,5550 和 5650,我想知道这两个数字是否接近,相差在 200 以内。我怎样才能用 VB6 做到这一点?我一无所知。
Say I have 2 numbers, 5550, and 5650, and I want to know if these two numbers are close, within 200 of each other. How could I do this with VB6? I am clueless.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需用较小的数字 (5550) 减去较大的数字 (5650),然后检查结果是否小于您的范围 (200)。我使用
Abs
,因此您无需检查哪个数字更大。Simply subtract the larger number (5650) from the smaller number (5550) and check if the result is less than your range (200). I use
Abs
so you don't need to check which number is greater.警告:这不能很好地处理整数溢出。如果 number1 是一个非常大的负数,而 number2 是一个很大的正数,这可能会产生奇怪的结果。
Warning: this will not handle integer overflow very nicely. If number1 is a very large negative number and number2 is a large positive number, this may produce strange results.