问题标签 [pascals-triangle]
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.
algorithm - 如何找到一个数字在帕斯卡三角形中重复的次数?
谁能给出一个算法来找到一个数字在帕斯卡三角形中重复的次数?例如
num - 次数
图片http://mathforum.org/dr.cgi/pascal.html
或者以其他方式,对于n C r = x可能有多少n C r,其中 x 是任何给定的整数?
ruby - Ruby 中的帕斯卡三角形
我正在用 Ruby 编写 Pascal 的三角形,但不断收到错误消息:
pascalsTriangle.rb:3:in 'triangle': 4:Fixnum (NoMethodError) 的未定义方法 'each'
来自 pascalsTriangle.rb:18
python - 在 Python 中格式化 Pascal 的三角形
我正在上我的第一堂编程课,我对如何完成这段代码有点迷茫。我正在尝试构建具有 n 行的帕斯卡三角形。我得到了要打印的行,每行都在自己的行上,但是我无法将它们格式化为三角形。以下是我到目前为止所得到的。提前致谢!
lisp - 计算二项式时的“应用程序:不是过程”
我正在定义一个函数binomial(n k)
(又名帕斯卡三角形),但出现错误:
我不明白这个错误,因为我认为这定义了我的功能:
java - 卡在 Java 中的帕斯卡三角形
好的,我需要一个重新创建帕斯卡三角形的类。我们正在使用 BlueJ,我无法让我的数组相互访问。这是代码:
该类将编译,但当我到达第三行时,应该读为1 2 1
,我java.lang.NullPointerException
在PascalTriangle.nextLine(PascalTriangle.java:29)
它处得到了一个突出显示该行的nextLineArray[(nextLineCount)] = (previousLineArray[(nextLineCount-1)
行。为什么 nextLineArray 会从nextLine()
第一次调用该方法时设置的 previousLineArray 中获取信息?
任何帮助将不胜感激:) 谢谢。
c++ - Pascal's Triangle using mainly functions in C++
I was trying to write a code that would display pascals triangle. Instead of displaying the result as :
my result is displayed as
1
1 1
1 2 1
1 3 3 1
Please help me figure out how to modify it to be able to get the actual triangle. I cant use arrays and pointers since those aren't covered in my class yet. Here's my code:
java - Pascal's Triangle Format
The assignment is to create Pascal's Triangle without using arrays. I have the method that produces the values for the triangle below. The method accepts an integer for the maximum number of rows the user wants printed.
I need to format the values of the triangle such that it looks like a triangle:
I can't for the life of me figure out how to do that. Please answer keeping in mind that I'm a beginner in Java programming.
java - 帕斯卡三角形的递归方法
我编写了一种方法来评估Pascal 的行三角形n
。但是,当我测试该方法时,我收到错误:
这是代码:
如果您对如何编辑代码以解决问题有任何想法,请告诉我。
fibonacci - 帕斯卡三角形和斐波那契数列解释
好的,我需要重新绘制帕斯卡的三角形并解释其中嵌入的斐波那契数列。我需要观察超过 12 行的三角形(以斐波那契数列中的数字 144 结尾)——我理解这部分我是只是解释每一行如何对角线形成斐波那契数的总和。
但是我需要使用三角形第n行中的第r个数字是C(n,r)= n!/ r!NR!
最后一部分让我感到困惑。我如何使用 C(n,r) 来解释三角形中的斐波那契数列?
请帮忙。谢谢
pascals-triangle - 使用用户输入绘制帕斯卡三角形 (Java)
我在问“有多少行”并希望它打印出帕斯卡三角形。但我收到一个错误:
线程“main”java.lang.Error 中的异常:未解决的编译问题:Pascal 类型中的方法 nthPascalRow(int) 不适用于 Pascal.main(Pascal.java:39) 的参数 (Scanner)
这是我的代码