們 加強斐波那契

2021-07-29 22:38:31 字數 527 閱讀 2085

description

對於斐波那契數列想必各位已經見過了。這裡給出乙個加強版。

f[i] = i (i <= 3);

f[i] = f[i-1] + f[i-2] + f[i-3](i >= 4);

input

多組輸入。每組輸入乙個整數n (1<= n && n <= 30)。

output

每組資料輸出乙個整數,代表f[n]。

sample input

1

4

sample output

1

題目描述

就是個加強版的斐波那契數列

解題思路

按照給出的公式寫就行,蠻水的乙個題

源**#include

using

namespace std;

intmain

() cout<}return0;

}

表示這個題並沒有什麼感想

們 加強斐波那契 oj

time limit 1000 ms memory limit 65536 kib submit statistic problem description 對於斐波那契數列想必各位已經見過了。這裡給出乙個加強版。f i i i 3 f i f i 1 f i 2 f i 3 i 4 input 多...

遞推之們 加強斐波那契

們 加強斐波那契 time limit 1000 ms memory limit 65536 kib submit statistic discuss problem description 對於斐波那契數列想必各位已經見過了。這裡給出乙個加強版。f i i i 3 f i f i 1 f i 2 ...

遞推遞迴練習 K 們 加強斐波那契

description 對於斐波那契數列想必各位已經見過了。這裡給出乙個加強版。f i i i 3 f i f i 1 f i 2 f i 3 i 4 input 多組輸入。每組輸入乙個整數n 1 n n 30 output 每組資料輸出乙個整數,代表f n sample input 1 4 sam...