在 VBA 中处理大于 Long 的数字
我目前正在尝试用 VBA 编写一些代码来解决 Project Euler 的问题。我一直在试图回答一个问题,要求你找到可以分成一个不能容纳很长的数字的素数。关于如何处理这个问题有什么建议吗?
我知道我可以将数字拆分为两个变量,并且我已经这样做了加法和减法,但从未做过除法。任何帮助将不胜感激。
I am Currently trying to write some code in VBA to solve a problem from Project Euler. I have been trying to answer a question that requires you to find primes that can be divided into a number that will not fit in a long. Any suggestions as how to handle this problem?
I know I can split the number between two variables and I have done that for addition and subtraction but never division. Any help will be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以定义 Decimal 数据类型(12 字节),
但仅限于变体内。
Dim i 作为变体
i = CDec(i)
You can define a Decimal data type (12 Bytes),
but only within a variant.
Dim i As Variant
i = CDec(i)
使用取较大值的“Double”数据类型。
Use the "Double" data type that takes larger values.