描述
Find a sequence of N numbers. Each number is equal to the count of (its index minus 1) in the sequence.
输入
One positive integer N (N <= 10).
输出
N lines: the i-th line contains one integer indicating the i-th number in the sequence.
翻译:
找到一个数的序列,每个数等于序列中(下标减一)的计数。
输入:
一个正整数
输出:
N行,第i行表示第i个数。
本文介绍了一个有趣的数学问题:寻找一个长度为N的数列,其中每个数代表了比其下标小1的数在序列中出现的次数。文章详细解释了问题的要求,包括输入和输出的具体形式。
1710

被折叠的 条评论
为什么被折叠?



