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.
我刚开始探索 APL。虽然熟悉 C++ 和 python,但我在执行一个简单的程序“打印前 n 个奇数”时遇到了困难,其中 n 是 APL 中的输入。请帮助 APL 编码员。
你的意思是你在执行那个 APL 程序时遇到了困难?
在数学上,奇数的形式为 2i+1。在 APL 中,表达式为我们提供了⍳n整数(假设索引原点为 0)。要获得所需的结果,请将它们乘以 2 并加 1:0n-1
⍳n
0
n-1
1+2×⍳n