Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何在 qb64 (1 / (2.718282 ^ 110)) + 1 中进行此计算以获得正确答案?因为它一直告诉我答案是 1。
e^110是一个很大的数字。因此,1/(e^110)非常接近于零。添加1,您将得到与 相同的结果qb64。
e^110
1/(e^110)
1
qb64
要求WolframAlpha确认。
QuickBasic由于准确性有限,可能会四舍五入。
QuickBasic