#1119. 序列生成1
序列生成1
Description
请你编写一个函数(这个函数不应传入参数),使其能够生成一个序列,并在第 n 次调用它的时候返回这个序列的第 n 项。
该序列为:
Fn={0;Fn−1+2.n≤0n>0
OJ 不会检查你这道题的代码是否符合要求,但是希望你能够自觉按照要求编写程序。
## Input Format输入仅一行,包含一个数 x 。x≤10000。
## Output Format输出共 x 行,每行一个整数。第 i 行的整数表示第 i 次调用的返回结果。
```input1 4 ``` ```output1 2 4 6 8 ``` ## Hint ``` int F() { static int pre = 0; pre += 2; return pre; } ```