问题标签 [numbers]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
10 回答
6306 浏览

logic - 哥德尔、埃舍尔、巴赫印刷数论 (TNT) 谜题和解决方案

在 Douglas Hofstader 的 Godel, Escher, Bach 的第 8 章中,读者面临着将这两个陈述翻译成 TNT 的挑战:

“b 是 2 的幂”

“b 是 10 的幂”

以下答案是否正确?:

(假设 '∃' 表示'存在一个数字'):

∃x:(xx = b)

即“存在一个数字'x'使得x乘以x等于b”

如果这是正确的,那么下一个同样微不足道:

∃x:(xxxxxxxxxx = b)

我很困惑,因为作者指出它们很棘手,第二个需要几个小时才能解决;我一定在这里错过了一些明显的东西,但我看不到它!

0 投票
3 回答
2027 浏览

delphi - 如何在 Delphi 中添加越来越多的已保存文件?

我正在制作一个程序来拍摄屏幕快照,并将其作为位图图片保存到文件夹中。我似乎遇到了问题,图片只是覆盖了自己。

谁能告诉我怎么做,所以当它保​​存时,这个数字会比上一个高一个吗?例如: 保存1:Screenshot0001.bmp 保存2:Screenshot0002.bmp 保存3:Screenshot0003.bmp

等等。

0 投票
1 回答
1185 浏览

core-data - KVC compliance for numbers in NSManagedObject subclass (CoreData)

I'm trying a basic test of sorting an NSManagedObject subclass. I set up a basic subclass "TestClass" with two attributes: stringField and numberField. They use the standard Obj-C 2.0 accessor protocol:

When I try to fetch instances of this entity, I can fetch based on either attribute. However, if I use a sort descriptor, the numberField is said to not be KVC-compliant.

Within the model, I set the numberField to Int64, but I'm confused. I thought the wrapper (NSNumber) would handle the KVC problem. What do I need to do to make this work?

0 投票
2 回答
2513 浏览

command-line - VB6 - Line Numbering at build time

One of the cool things about VB6 is that if you add a line numbers to your code is that the ERL function will return it if an error occurs.

I use MZ-Tools for VB6 to add line numbers to the entire project, which is really cool, however, it's a pain to work with code that is numbered. So I typically remove the lines while I work on it.

I was wondering whether there is a command line way to add/remove line numbers using either MZ-Tools or something else? I'd like to incorporate it into the build process.

Thanks.

0 投票
3 回答
5223 浏览

apache-flex - firefox不会在flex中将字符串转换为数字

我使用全局坐标在 Flex 中制作了一个 Web 应用程序

我从 Web 服务获取坐标作为字符串,然后执行以下操作:

这在 IE 和 chrome 上完美运行,从 Web 服务器和本地调试时,但Firefox 仅在本地调试时有效,而不是从 Web 服务器,在 Web 服务器中cLatcLong返回“ NaN”。

自己检查一下,当你点击结果时它应该会弹出一个警报:http: //mundobuk.com/prueba/mapa/main.html?buscar= oxxo

所以我尝试使用,但parseFloat()它会cLat四舍五入:(28cLong-106

然后我尝试将小数与整数分开,例如我的示例 28 和 7242100786401 然后除以 7242100786401/10000000000000 = 0.7242100786401

有 2 个数字 28 和 0.7242100786401 我把它们加起来

28 + 0.7242100786401 = 28.7242100786401

这是代码形式:

再一次,这种方式在任何地方都很好用,只是在 web 服务器的 firefox 中不行>_>

有人有想法么?我要疯了@_@

0 投票
4 回答
10335 浏览

java - 当您需要存储(非常)大的数字时该怎么办?

我正在尝试做一个Project Euler问题,但它涉及添加一个非常大的数字的数字。(100 个!)

使用 Java 的 int 和 long 太小了。

感谢您的任何建议

0 投票
5 回答
116573 浏览

c# - 十进制的0x10是什么?

我有以下代码:

SN是一个字符串,所以这应该给出第 5 个字符。行!

现在我有另一个代码,但是:SN.get_Chars(0x10)

我想知道0x10是什么?是数字吗?如果是这样,那么十进制表示法是什么?

0 投票
5 回答
44580 浏览

c# - 如何用逗号格式化数字?

如何进行输出?

10,000,000

0 投票
6 回答
227 浏览

c# - 关于数组的问题

我对此代码有疑问。我是初学者,喜欢学习 C#。但后来我谈到了现在称为 Array 的主题,这非常困难,我需要你的帮助。我想了解代码。我在这里不明白的是这里的第1、2、3、4和5部分是什么意思?
我不明白这里的“const”和“byte”的作用是什么?我会很感激你的解释?感谢和问候;-)

1)

2)

3)

4)

5)

0 投票
2 回答
11022 浏览

text - 在批处理文件中显示文本文件中的行

我试图找到一个脚本,让我在批处理文件中的文本文件中显示“linenumber# 和 linenumber# 以及lines#-#”?我在这个网站上找到了这个脚本..

而且效果很好:) 但它会从文本文件的顶部获取行数。我希望能够在文本文件中显示某些行,以及一个范围(如果可能)。

EG:我有一个 30 行的文本文件,我想显示第 1-4 行;7-11;13; 17-20; 22; 26 和 29